Find the answer to your Linux question:
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 ...
  1. #1
    Just 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?

  2. #2
    drl
    drl is offline
    Linux Engineer drl's Avatar
    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, drl
    Welcome - 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 )

  3. #3
    Just Joined!
    Join Date
    May 2010
    Posts
    41
    There is mt3 target,I have changed later.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...