flibs.sh 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #! /bin/sh
  2. # Copyright (C) 1998-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Make sure 'AC_F77_LIBRARY_LDFLAGS' works properly.
  17. # Matthew D. Langston <langston@SLAC.Stanford.EDU>
  18. . test-init.sh
  19. cat >> configure.ac << 'END'
  20. AC_PROG_F77
  21. AC_F77_LIBRARY_LDFLAGS
  22. END
  23. # Tue Aug 11 09:50:48 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
  24. #
  25. # This test currently fails with automake v. 1.3 since automake assumes
  26. # that elements of 'bin_PROGRAMS' (e.g. zardoz) without a corresponding
  27. # '_SOURCES' (e.g. zardoz_SOURCES) should be compiled from 'zardoz.c'
  28. # whether or not 'zardoz.c' actually exists. For example, even if the
  29. # file 'zardoz.c' doesn't exist but the file 'zardoz.f' does exist, this
  30. # tests would still fail.
  31. #
  32. # Therefore, for now I have put in the line 'zardoz_SOURCES = zardoz.f'
  33. # (see below) so that automake's top-level 'make check' won't fail, but
  34. # this line should be removed once automake handles this situation
  35. # correctly.
  36. cat > Makefile.am <<'END'
  37. bin_PROGRAMS = zardoz
  38. zardoz_SOURCES = zardoz.f
  39. zardoz_LDADD = @FLIBS@
  40. END
  41. : > zardoz.f
  42. : > config.guess
  43. : > config.sub
  44. $ACLOCAL
  45. $AUTOMAKE
  46. grep '@FLIBS@' Makefile.in