bug-make
[Top][All Lists]
Advanced

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

Re: possible bug in 3.79.1 on irix6.5 ? works okay with IBM power4, same


From: Nils Wedi
Subject: Re: possible bug in 3.79.1 on irix6.5 ? works okay with IBM power4, same version of gmake
Date: Fri, 13 Sep 2002 17:13:49 +0000

Paul,

You are absolutely right, gmake *IS* case sensitive. Your suggestion
does not work, though, since the compiler afterall needs uppercase
modules.

However, I see the problem now, but I do not know a clever
implementation of it. Perhaps you have an idea ?

we usually operate with the following implicit rule to invoke actions
like compile:

%.o %.mod : %.F90
       @compile .....

which is not good enough since modules on sgi are uppercase and %...
refers to both lowercase.

If I hardcode the following implicit rule it works:

yomobset.o YOMOBSET.mod : yomobset.F90
       @compile .....

so what I need is implicit rules of the form:

%.o uppercase(%).mod : %.F90
       @compile .....
%.o lowercase(%).mod : %.F90
       @compile .....

How do I achieve this ?

Best Regards,

Nils

-- 
Nils Wedi
address@hidden
ECMWF (European Centre for Medium-Range Weather Forecasts)
---------------------




reply via email to

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