Results 1 to 3 of 3
I am dealing with one FORTRAN 90 code,have made small changes.
milenko@milenkons:~/mt4$ make mt4
make: `mt4' is up to date.
milenko@milenkons:~/mt4$ ifort -c MT2DDIB1.FOR
milenko@milenkons:~/mt4$ make mt4
make: `mt4' is ...
- 03-10-2011 #1Just Joined!
- Join Date
- May 2010
- Posts
- 41
makefile insensitive to change!
I am dealing with one FORTRAN 90 code,have made small changes.
milenko@milenkons:~/mt4$ make mt4
make: `mt4' is up to date.
milenko@milenkons:~/mt4$ ifort -c MT2DDIB1.FOR
milenko@milenkons:~/mt4$ make mt4
make: `mt4' is up to date.
milenko@milenkons:~/mt4$ make mt4
make: `mt4' is up to date.
milenko@milenkons:~/mt4$ make mt4
make: `mt4' is up to date.
I go for make command but it does not see that the source code has been modified.Than I do compilation from command line,try make again but no use.
F95=ifort
FFLAFGS= -O1
mt3: driver_mt2ddi.o constants.o settings.o params.o mt2dmod.o fdsystem.o mt2ddat.o mt2dsens.o
$(F95) -o $(FFLAGS) mt3 constants.o settings.o params.o mt2dmod.o fdsystem.o mt2ddat.o mt2dsens.o driver_mt2ddi.o
driver_mt2ddi.o: driver_mt2ddi.for constants.o settings.o params.o mt2dmod.o fdsystem.o mt2ddat.o mt2dsens.o
$(F95) -c $(FFLAGS) driver_mt2ddi.for
Anybodu has idea?
- 03-10-2011 #2Linux Engineer
- Join Date
- Apr 2006
- Location
- Saint Paul, MN, USA / CentOS, Debian, Solaris, SuSE
- Posts
- 1,117
Hi.
I don't see "mt4" listed as a target ... cheers, drlWelcome - get the most out of the forum by reading forum basics and guidelines: click here.
90% of questions can be answered by using man pages, Quick Search, Advanced Search, Google search, Wikipedia.
We look forward to helping you with the challenge of the other 10%.
( Mn, 2.6.n, AMD-64 3000+, ASUS A8V Deluxe, 1 GB, SATA + IDE, Matrox G400 AGP )
- 03-10-2011 #3Just Joined!
- Join Date
- May 2010
- Posts
- 41
There is mt3 target,I have changed later.


Reply With Quote