Re: Fortran 90/95 support (automake)

2001-06-07 Thread Tom Tromey
> ">" == marq <[EMAIL PROTECTED]> writes: >> What the attached patch does is simply to register new languages: >> fortran 90, fortran 95, and their preprocessed versions. The main >> rationale behind this is: Thanks! This won't go into automake 1.5. We're trying to get ready to release.

Fortran 90/95 support (automake)

2001-06-07 Thread marq
Hello! Over the last months, I have used autoconf and automake for various libraries and programs - they are *s* useful! Working in a more meteorological / scientific environment, the only thing I found missing was the support for the fortran 90 and 95 languages. What the attached patch doe

[ANNOUNCE] New stable automake release: automake-1.4-p3

2001-06-07 Thread Gary V . Vaughan
Yet another interruption to your regularly scheduled posts with a brief news flash: I am proud to present patch release 3 from the automake-1.4 maintenance branch. The main purpose of this release is to add better compatibility with Autoconf-2.50. It is available now from: ftp://ftp

Re: How to tell an extra rule to automake

2001-06-07 Thread Tom Tromey
> "Stéphane" == Stéphane Genaud <[EMAIL PROTECTED]> writes: Stéphane> modnam.def : ttimes.f Stéphane> echo " data modnam/'$(datadir)'" > modnam.def Stéphane> and i need this file to be written before the ttimes.f compiles. You have a few choices. One is this: BUILT_SOURCES

Re: How to tell an extra rule to automake

2001-06-07 Thread Tim Van Holder
> The rule is : > > modnam.def : ttimes.f This means 'ttimes.f must be up-to-date in order for this rule, which makes modnam.def up-to-date, to be able to run'. From what you say, this is not what you mean. > echo " data modnam/'$(datadir)'" > modnam.def > > and i need this file t

How to tell an extra rule to automake

2001-06-07 Thread Stéphane Genaud
Hello, i have a very simple problem that i could manage simply wit a Makefile rule, but have been unable to tell automake to handle this. The rule is : modnam.def : ttimes.f echo " data modnam/'$(datadir)'" > modnam.def and i need this file to be written before the ttimes.f comp