help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Makefile with .mod files from gfortran


From: Brian Dessent
Subject: Re: Makefile with .mod files from gfortran
Date: Sat, 03 Nov 2007 11:19:25 -0700

Ignacio Fernández Galván wrote:

> a.mod a.o: a.f90 b.mod
>         gfortran -c $<
> 
> b.mod b.o: b.f90
>         gfortran -c $<

The reason that this misbehaves is that it violates rule number 2:
<http://make.paulandlesley.org/rules.html>.  Specifically, what you are
telling make with the above is: "to update a.mod, run gfortran -c
a.f90".  But that command does not necessarily update a.mod, so it's a
lie, and make gets confused.

Did you not see FX's reply on the fortran list? 
<http://gcc.gnu.org/ml/fortran/2007-11/msg00013.html>  His solution is
cleaner, since it effectively communicates to make that a.mod depends on
a.f90 and a.o, but without implying that the module can be rebuilt by
calling gfortran -c a.f90.  I think the @true part is even extraneous if
it looks too ugly.

Brian




reply via email to

[Prev in Thread] Current Thread [Next in Thread]