]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/fcdemo/Makefile.am (suffix rules): Explicitly add
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 24 Aug 2005 11:11:39 +0000 (11:11 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 24 Aug 2005 11:11:39 +0000 (11:11 +0000)
$(FCFLAGS_f90) so the tests can pass on AIX.

ChangeLog
tests/fcdemo/Makefile.am

index 2f211d6007812d1160b9f7c741b971955f5043b5..774977b31146c97e85c8c9fef329cc7fea3cbd1c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * tests/fcdemo/Makefile.am (suffix rules): Explicitly add
+       $(FCFLAGS_f90) so the tests can pass on AIX.
+
 2005-08-24  Peter O'Gorman  <peter@pogma.com>
 
        * libltdl/config/ltmain.m4sh (inherited_linker_flags): Work when
index e20cd50e73c685a58fa4e38118fa5a800d1b044e..661d53373efd00d00d4b961f31e97dec976e6034 100644 (file)
@@ -49,3 +49,13 @@ cprogram_LDADD = libmix.la $(FCLIBS)
 $(OBJECTS): libtool
 libtool: $(LIBTOOL_DEPS)
        $(SHELL) ./config.status --recheck
+
+# work around Automake bug not providing FCFLAGS_f90:
+.f90.o:
+       $(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $<
+
+.f90.obj:
+       $(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'`
+
+.f90.lo:
+       $(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $<