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/NVTK – NEMO

source: trunk/NVTK/Makefile @ 1359

Last change on this file since 1359 was 1356, checked in by cetlod, 15 years ago

Modifying scripts to take into account TOP/PISCES ref config in NVTK, see ticket:386

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 8.2 KB
Line 
1# $Id$
2#####################################################################
3# Author : Claude Talandier for NEMO team
4# Contact : nemo_st@locean-ipsl.upmc.fr
5#
6# VARS TO SET: 6 + 1 (optional)
7#     - NAM_V      : name of the current test
8#     - LISTE_CONF : configurations name (ORCA2_LIM, GYRE ...)
9#     - JOBS_2LAUN : jobs to launch (nojob, all, long, short or gtime)
10#     - BUILD_MAKE : run type (mon, mpi ... )
11#     - MAK_TIME   : to perform a CPU time measure making a one year run
12#                    use key word 'timing' or 'notiming'
13#     - MAK_MEMO   : to perform a memory check
14#                    use key word 'memo' or 'nomemo'
15#     - REF_TAGV   : (optional) reference tag name. If specified,
16#                    current results will be compare to the results
17#                    of this tag (for a given configuration and run type)
18#
19# WORK: Allows to launch all the validation process, i.e.
20#     I.   to build dependencies use: > gmake -s dep
21#     II.  to launch compilation,simulation,final report use: > gmake
22#
23#####################################################################
24SHELL = /bin/ksh
25#####################################################################
26##### Begin Users modifications
27#####################################################################
28#-
29#- Name of the test
30NAM_V = MY_EXP1
31#-
32#- Configurations list which must be tested
33LISTE_CONF = GYRE GYRE_LOBSTER ORCA2_LIM ORCA2_LIM_PISCES ORCA2_OFF_PISCES
34#-
35#- Jobs to launch use keyword: nojob, all, long, short or gtime
36JOBS_2LAUN = all
37#-
38#- Compilation list type to perform, mon (mono) &/or mpi &/or omp (Open-MP)
39BUILD_MAKE =  mon mpi
40#-
41#- Proceed to a timing, use key word 'timing' or 'notiming'
42MAK_TIME = notiming
43#-
44#- Proceed to a memory check, use key word 'memo' or 'nomemo'
45MAK_MEMO = memo
46#-
47#- Reference Tag version
48REF_TAGV = nemo_v2_3
49#-
50#####################################################################
51##### End Users modifications
52#####################################################################
53
54##
55all: $(LISTE_CONF)
56   @echo '      '
57   @echo '             ----->>>>>>>>>   Compilation process ended for configuration(s) :' $(LISTE_CONF)
58   @echo '      '
59
60#- Make good links & launch the compilation process
61$(LISTE_CONF):
62   @echo
63   @echo "CONFIGURATION :" $@
64   @( MYREP_LIST=`(cd 2TEST ; ls *.[Ffh]90 )` ; \
65          cd ../$@/MY_SRC ; rm -rf *.[Ffh]90 ; if [ -n "$$MYREP_LIST" ] ; \
66        then ln -sf ../../NVTK/2TEST/*.[Ffh]90 . ; fi ; ) 
67   @echo "test=" $(NAM_V) > ../$@/specifs.txt
68   @echo "runs=" $(BUILD_MAKE) >> ../$@/specifs.txt
69   @echo "time=" $(MAK_TIME) >> ../$@/specifs.txt
70   @echo "memo=" $(MAK_MEMO) >> ../$@/specifs.txt
71   @echo "tagname=" $(REF_TAGV) >> ../$@/specifs.txt
72   @echo `svn info ../../modeles/NEMO | grep URL` >> ../$@/specifs.txt
73   @echo `svn info ../../modeles/NEMO | grep Revision ` >> ../$@/specifs.txt
74   @( LSFILES=`(cd 2TEST ; ls *.[Ffh]90 )` ; if [ -n "$$LSFILES" ] ; \
75     then echo $$LSFILES > ../$@/f2test.txt ; else rm -f ../$@/f2test.txt ; \
76          touch ../$@/f2test.txt ; fi ; )
77   @echo
78   @echo '             ----->>>>>>>>>   Links from NVTK/2TEST to '$@/MY_SRC 'done'
79   @echo
80   @echo '                              Build the Makefile for' $@ 'configuration'
81   @../../util/ins_make -w $@
82   @echo
83   @echo
84   @gmake -C ../$@ RUN='$(BUILD_MAKE)' JOB=$(JOBS_2LAUN) RTG=$(REF_TAGV) MKTE=$(MAK_TIME) MKMO=$(MAK_MEMO) REXP=$(NAM_V) -j 2 > $@_step.txt
85
86#- Rebuild dependencies when new cpp key and/or new module used
87dep: clear
88   for conf in ${LISTE_CONF}; do \
89       echo ; \
90       echo ; \
91       echo ; \
92       echo '             ----->>>>>>>>> Rebuild dependencies for the' $$conf 'configuration' ; \
93       echo ; \
94       echo '                          > Build links from 2TEST to '$$conf'/MY_SRC directory :' ; \
95       echo ; \
96       MYREP_LIST=`(cd 2TEST ; ls *.[Ffh]90 )` ; \
97            cd ../$$conf/MY_SRC ; rm -rf *.[Ffh]90 ; \
98            if [ -n "$$MYREP_LIST" ] ; \
99            then for F in $$MYREP_LIST; do \
100            echo "                             # link from 2TEST to "$$conf"/MY_SRC/$$F" ; \
101                   ln -sf  ../../NVTK/2TEST/$$F . ; \
102                done ; fi ; \
103       echo ; \
104       echo ; \
105       echo '                          > Rebuild links in the '$$conf'/WORK directory:' ; \
106       echo ; \
107            cd ../WORK ; \
108       rm -rf `ls | fgrep -v -f .patron` ; \
109       check=`grep OPA_SRC .config`              ; \
110       if [ -n "$$check" ] ; then                   \
111           echo "                             # use OPA_SRC component files"                ; \
112           ln -sf ../../../modeles/NEMO/OPA_SRC/*.[Ffh]90          . ; \
113           ln -sf ../../../modeles/NEMO/OPA_SRC/*/*.[Ffh]90      . ; \
114            fi ; \
115       check=`grep LIM_SRC_2 .config`              ; \
116       if [ -n "$$check" ] ; then                   \
117           echo "                             # use LIM_SRC_2 component files"                ; \
118                ln -sf ../../../modeles/NEMO/LIM_SRC_2/*.[Ffh]90          . ; \
119            fi ; \
120       check=`grep LIM_SRC_3 .config`              ; \
121       if [ -n "$$check" ] ; then                   \
122           echo "                             # use LIM_SRC_3 component files"                ; \
123                ln -sf ../../../modeles/NEMO/LIM_SRC_3/*.[Ffh]90          . ; \
124            fi ; \
125       check=`grep NST_SRC .config`              ; \
126       if [ -n "$$check" ] ; then                   \
127           echo "                             # use NST_SRC component files"                ; \
128                \rm -rf agrif_opa_interp.F90           ; \
129                \rm -rf agrif_opa_sponge.F90           ; \
130                \rm -rf agrif_opa_update.F90           ; \
131                \rm -rf agrif_top_interp.F90           ; \
132                \rm -rf agrif_top_sponge.F90           ; \
133                \rm -rf agrif_top_update.F90           ; \
134                ln -sf ../../../modeles/NEMO/NST_SRC/*.[Ffh]90      .     ; \
135            fi ; \
136       check=`grep C1D_SRC .config`              ; \
137       if [ -n "$$check" ] ; then                   \
138           echo "                             # use C1D_SRC component files"                ; \
139                ln -sf ../../../modeles/NEMO/C1D_SRC/*.[Ffh]90          . ; \
140            fi ; \
141       check=`grep TOP_SRC .config`              ; \
142       if [ -n "$$check" ] ; then  \
143           echo "                             # use TOP_SRC component files"                ; \
144                \rm -rf trcstp.F90                      ; \
145                \rm -rf sms.F90                         ; \
146                \rm -rf trcini.F90                      ; \
147                ln -sf ../../../modeles/NEMO/TOP_SRC/*.[Ffh]90          . ; \
148                ln -sf ../../../modeles/NEMO/TOP_SRC/*/*.[Ffh]90      . ; \
149            fi ; \
150       check=`grep OFF_SRC .config`              ; \
151       if [ -n "$$check" ] ; then                   \
152           echo "                             # use OFF_SRC component files"                ; \
153                ln -sf ../../../modeles/NEMO/OFF_SRC/*.[Ffh]90          . ; \
154                ln -sf ../../../modeles/NEMO/OFF_SRC/*/*.[Ffh]90        . ; \
155            fi ; \
156       mn=`awk '{ print $$1 }' .config `  ; \
157            myrep=../../../config/$$mn/MY_SRC ; \
158       echo "                             # use MY_SRC component files"                ; \
159            for i in `ls $$myrep` ; do \
160              [ -f $$i ] && \rm -rf $$i ;\
161            done ; \
162            myrep_list=`(cd $$myrep ; ls *.[Ffh]90 )` ; \
163            if [ -n "$$myrep_list" ] ; then \
164                for F in $$myrep_list; do \
165                   ln -sf  $$myrep/$$F . ; \
166                done ; \
167            fi ; \
168       rm -f tmplist ; \
169       ls -1 | fgrep -v -f .patron > SRC_FILE_LIST.temp ; \
170            cd .. ; ../NVTK/fait_AA_make ; \
171       echo ; \
172       echo "                             #################################" ;\
173       echo "                             Dependencies for" $$conf "ready" ;\
174       echo "                             #################################" ;\
175       echo ;\
176            cd ../NVTK ; \
177        done 
178   @echo
179   @echo "                             ##################################################" 
180   @echo "                             Launch the compilation and job process using gmake" 
181   @echo "                             ##################################################"
182   @echo
183
184clear :
185   @echo
186   @echo
187   @clear
Note: See TracBrowser for help on using the repository browser.