New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Makefile in trunk/AGRIF/LIB – NEMO

source: trunk/AGRIF/LIB/Makefile @ 1200

Last change on this file since 1200 was 1200, checked in by rblod, 16 years ago

Adapt Agrif to the new SBC and correct several bugs for agrif (restart writing and reading), see ticket #133
Note : this fix does not work yet on NEC computerq (sxf90/360)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1#- option to debug
2C_D = -g # -g -Wall
3# Compilation:
4CC    = cc -O
5#-
6OBJS = main.o WriteInFile.o toamr.o fortran.o  \
7       dependfile.o SubLoopCreation.o WorkWithlistvarindoloop.o \
8       WorkWithvarofsubroutineliste.o WorkWithParameterlist.o \
9       Writedeclarations.o WorkWithglobliste.o UtilFortran.o \
10       UtilNotGridDep.o WorkWithlistdatavariable.o \
11       DiversListe.o UtilAgrif.o WorkWithAllocatelist.o \
12       UtilCharacter.o UtilListe.o UtilFile.o \
13       WorkWithlistofmodulebysubroutine.o WorkWithlistmoduleinfile.o \
14       WorkWithlistofcoupled.o
15
16
17.SUFFIXES:
18.SUFFIXES: .c .o
19
20all : conv
21   @echo CONV is ok
22
23conv :  $(OBJS)
24   @$(CC) $(OBJS) -o ../$@
25
26main.o : main.c
27fortran.o : fortran.c   
28toamr.o : toamr.c decl.h
29WriteInFile.o : WriteInFile.c decl.h
30dependfile.o : dependfile.c decl.h 
31SubLoopCreation.o : SubLoopCreation.c decl.h
32WorkWithglobliste.o : WorkWithglobliste.c decl.h   
33WorkWithlistvarindoloop.o : WorkWithlistvarindoloop.c decl.h   
34WorkWithvarofsubroutineliste.o : WorkWithvarofsubroutineliste.c decl.h 
35Writedeclarations.o : Writedeclarations.c decl.h   
36UtilFortran.o : UtilFortran.c decl.h   
37WorkWithParameterlist.o : WorkWithParameterlist.c decl.h
38UtilNotGridDep.o : UtilNotGridDep.c decl.h   
39WorkWithlistdatavariable.o : WorkWithlistdatavariable.c decl.h
40DiversListe.o : DiversListe.c decl.h   
41UtilAgrif.o : UtilAgrif.c decl.h
42WorkWithAllocatelist.o : WorkWithAllocatelist.c decl.h
43UtilCharacter.o : UtilCharacter.c decl.h
44UtilListe.o : UtilListe.c decl.h
45UtilFile.o : UtilFile.c decl.h
46WorkWithlistofmodulebysubroutine.o : WorkWithlistofmodulebysubroutine.c decl.h
47WorkWithlistmoduleinfile.o : WorkWithlistmoduleinfile.c decl.h
48WorkWithlistofcoupled.o : WorkWithlistofcoupled.c decl.h
49clean : 
50   /bin/rm -f *.o y.output
Note: See TracBrowser for help on using the repository browser.