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 branches/UKMO/dev_r5518_area_calc/NEMOGCM/EXTERNAL/AGRIF/LIB – NEMO

source: branches/UKMO/dev_r5518_area_calc/NEMOGCM/EXTERNAL/AGRIF/LIB/Makefile @ 6740

Last change on this file since 6740 was 6740, checked in by jrioual, 8 years ago

Remove svn keywords

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.