Re: Why no dependency tracking with preprocessed Fortran?

2010-06-22 Thread Ralf Wildenhues
Hello Jeff, * Daily, Jeff A wrote on Wed, Apr 14, 2010 at 11:36:54PM CEST: > Why doesn't automake have dependency tracking for preprocessed Fortran? Because nobody has implemented it yet. > Wouldn't the following work? Note that there is a space before > include so that automake doesn't process

Re: Defining dependencies in Automake

2010-06-22 Thread Ralf Wildenhues
Hello Sam, first off, please don't multi-post to both autoconf and automake lists. Thank you. * Sam Silla wrote on Tue, Jun 22, 2010 at 05:41:24PM CEST: > I have a Makefile.am file right now that looks like this: > > lib_LIBRARIES = foo.a > > foo_a_SOURCES = bar.F90 baz.F90 > > However, bar.F9

Re: Defining dependencies in Automake

2010-06-22 Thread Gary V. Vaughan
[please delete autoc...@gnu.org from Cc: if you reply] This is really an automake question, so you posted to the wrong list! On 22 Jun 2010, at 22:32, Sam Silla wrote: > Greetings, > > I have a Makefile.am file right now that looks like this: > > lib_LIBRARIES = foo.a > > foo_a_SOURCES = bar.F

Defining dependencies in Automake

2010-06-22 Thread Sam Silla
Greetings, I have a Makefile.am file right now that looks like this: lib_LIBRARIES = foo.a foo_a_SOURCES = bar.F90 baz.F90 However, bar.F90 depends on several other Fortran files (x.F90, y.F90, z.F90). I would like to set up Automake to rebuild bar.o if the source of one of these dependencies c