From: Ralf Wildenhues Date: Wed, 24 Aug 2005 11:11:39 +0000 (+0000) Subject: * tests/fcdemo/Makefile.am (suffix rules): Explicitly add X-Git-Tag: release-2-1b~562 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9918d1b09cc66b33b0c44dcce99e2c258dad2479;p=thirdparty%2Flibtool.git * tests/fcdemo/Makefile.am (suffix rules): Explicitly add $(FCFLAGS_f90) so the tests can pass on AIX. --- diff --git a/ChangeLog b/ChangeLog index 2f211d600..774977b31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-24 Ralf Wildenhues + + * tests/fcdemo/Makefile.am (suffix rules): Explicitly add + $(FCFLAGS_f90) so the tests can pass on AIX. + 2005-08-24 Peter O'Gorman * libltdl/config/ltmain.m4sh (inherited_linker_flags): Work when diff --git a/tests/fcdemo/Makefile.am b/tests/fcdemo/Makefile.am index e20cd50e7..661d53373 100644 --- a/tests/fcdemo/Makefile.am +++ b/tests/fcdemo/Makefile.am @@ -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) $<