source: trunk/LMDZ.MARS/makegcm_ifort @ 1428

Last change on this file since 1428 was 1416, checked in by milmd, 10 years ago

Update newstart and start2archive programs to work with LMDZ.GENERIC or LMDZ.MARS dynamics. Modification of makegcm_ifort to compile on Ada.

  • Property svn:executable set to *
File size: 25.5 KB
Line 
1#!/bin/csh -f
2# $Header: /users/lmdz/cvsroot/LMDZ.3.3/makegcm,v 1.21 2001/07/04 08:41:44 lmdz Exp $
3#set verbose echo
4########################################################################
5# options par defaut pour la commande make
6########################################################################
7set dim="64x48x32"
8set physique=mars
9set phys="PHYS=$physique"
10set include='-I$(LIBF)/grid -I$(LIBF)/misc -I. -I$(LIBF)/dynlonlat_phylonlat'
11set ntrac = 1
12set filtre=filtrez
13set grille=reg
14set dyntype="dyn"
15set full=""
16#src_dirs: directories containing source files
17set src_dirs="grid misc" 
18
19########################################################################
20# path a changer contenant les sources et les objets du modele
21########################################################################
22
23#### If you want you can set environment variables here (instead of
24####  relying on the C-shell environment variables)
25# default LMDGCM to where makegcm script is located:
26set scriptdir=`dirname $0`
27setenv LMDGCM `readlink -f $scriptdir`
28# You may set LIBOGCM to something else; otherwise we default to:
29setenv LIBOGCM $LMDGCM/libo
30
31### NetCDF librairies. some presets for LMD people.
32hostname | grep 'lmd.jussieu.fr' > /dev/null
33if ( $? == 0 ) then
34   echo "*** NETCDF preset *** LMD machines"
35   setenv NCDFLIB /donnees/emlmd/netcdf64-4.0.1_ifort/lib
36   setenv NCDFINC /donnees/emlmd/netcdf64-4.0.1_ifort/include
37endif
38hostname | grep 'n201' > /dev/null
39if ( $? == 0 ) then
40   echo "*** NETCDF preset *** GNOME cluster"
41   setenv NCDFLIB /usr/local/lib
42   setenv NCDFINC /usr/local/include
43endif
44hostname | grep 'ciclad' > /dev/null
45if ( $? == 0 ) then
46   echo "*** NETCDF preset *** CICLAD cluster"
47   setenv NCDFLIB /opt/netcdf3/ifort/lib
48   setenv NCDFINC /opt/netcdf3/ifort/include
49endif
50hostname | grep 'ada' > /dev/null
51if ( $? == 0 ) then
52   echo "*** NETCDF preset *** CICLAD cluster"
53   setenv NCDFLIB /smplocal/pub/NetCDF/4.1.3/seq/lib
54   setenv NCDFINC /smplocal/pub/NetCDF/4.1.3/seq/include
55endif
56### end NetCDF presets
57
58setenv localdir "`pwd`"
59set MODIPSL=0
60echo $localdir | grep modipsl >& /dev/null
61if ( ! $status ) then
62  set MODIPSL=1
63  setenv LMDGCM $localdir
64  cd ../..
65  setenv LIBOGCM "`pwd`/lib"
66  cd $localdir
67  if ( `hostname` == rhodes ) then
68    set NCDFINC=`grep sxnec ../../util/AA_make.gdef| grep NCDF_INC|sed -e "s/^.* =//"`
69    set NCDFLIB=`grep sxnec ../../util/AA_make.gdef| grep NCDF_LIB|sed -e 's/^.* =//'`
70  else
71    if ( `hostname` == nymphea0 ) then
72      set NCDFINC=`grep fjvpp ../../util/AA_make.gdef| grep NCDF_INC|sed -e "s/^.* =//"`
73      set NCDFLIB=`grep fjvpp ../../util/AA_make.gdef| grep NCDF_LIB|sed -e 's/^.* =//'`
74    else
75      echo 'Probleme de definition des variables NCDFINC et NCDFLIB'
76    endif
77  endif
78else
79  if ( ! $?LMDGCM ) then
80    echo You must initialize the variable LMDGCM in your environnement
81    echo for instance: "setenv LMDGCM /usr/myself/supergcm" in .cshrc
82    exit
83  endif
84  if ( ! $?LIBOGCM ) then
85    set LIBOGCM=$LMDGCM/libo
86  endif
87  if ( ! $?NCDFLIB ) then
88    echo You must initialize the variable NCDFLIB in your environnement
89    echo for instance: "setenv NCDFLIB /usr/myself/netcdf" in .cshrc
90    exit
91  endif
92  if ( ! $?NCDFINC ) then
93    echo You must initialize the variable NCDFINC in your environnement
94    echo for instance: "setenv NCDFINC /usr/myself/netcdf" in .cshrc
95    exit
96  endif
97endif
98set model=$LMDGCM
99set libo=$LIBOGCM
100
101########################################################################
102#  Les differentes platformes reconnues
103########################################################################
104
105set HP=0
106set IBM=0
107set SUN=0
108set VPP=0
109set CRAY=0
110set DEC=0
111set LINUX=0
112set NEC=0
113set XNEC=0
114if ( `uname` == HP-UX ) then
115   set machine=HP
116   set HP=1
117else if (`uname` == UNIX_System_V ) then
118   set machine=VPP
119   set VPP=1
120else if (`uname` == SunOS ) then
121   set machine=SUN
122   set SUN=1
123else if ( `uname` == AIX ) then
124   set machine=IBM
125   set IBM=1
126else if ( `uname` == OSF1 ) then
127   set machine=ALPHA
128   set DEC=1
129else if ( `uname` == Linux ) then
130   set machine=LINUX
131   set LINUX=1
132else if ( `hostname` == atlas || `hostname` == axis  || `hostname` == etoile ) then
133   set machine=CRAY
134   set CRAY=1
135else if ( `uname` == SUPER-UX ) then
136   set machine=NEC
137   set NEC=1
138else if ( `hostname` == rhodes) then
139   set machine=XNEC
140   set XNEC=1
141else
142   echo Vous travaillez sur une machine non prevue par le reglement
143   exit
144endif
145
146# create $libo directory if it doesn't exist
147if ( ! -d $libo )  then
148   mkdir $libo
149endif
150
151if $VPP then
152set netcdf=netcdf_v
153else
154set netcdf=netcdf
155endif
156########################################################################
157#  Quelques initialisations de variables du shell.
158########################################################################
159
160set dyn=
161set opt_link=""
162set adjnt=""
163set opt_dep=""
164
165set optim90=""
166set oplink=""
167
168########################################################################
169#  Optimisations par defaut suivant les machines
170########################################################################
171
172echo "Optimisations par defaut suivant les machines"
173set libf=$model/libf
174#setenv localdir "LOCAL_DIR=`pwd`"
175#setenv localdir "`pwd`"
176cd $model
177if $CRAY then
178   set optim90="-Wp'-P' -DCRAY "'-p$(LIBO) -eiv '
179   set oplink="-Wl'-DSTACK=128 -f indef' -L$NCDFLIB -lnetcdf "
180   set mod_loc_dir=" "
181   set mod_suffix=" "
182else if $SUN then
183   set optim90=" -fast"
184   set optimtru90=" -fast -free"
185   set opt_link="-L$NCDFLIB -lnetcdf"
186   set mod_loc_dir=$localdir
187   set mod_suffix=mod
188else if $HP then
189else if $IBM then
190else if $VPP then
191   set optim90="$optim -X9 -w"
192   if $COUPLE then
193     set opt_link="-Wg,-c $IOIPSLDIR/liboasis2.4_mpi2.a /usr/lang/mpi2/lib64/libmpi.a /usr/lang/mpi2/lib64/libmp.a /usr/local/lib/lib64/libnetcdf_cc.a -L$IOIPSLDIR -lioipsl"
194     set oplink="-Wl,-t,-P,-dy "
195   else
196     set opt_link="-Wg,-c /usr/local/lib/lib64/libnetcdf_cc.a -L$IOIPSLDIR -lioipsl"
197     set oplink="-Wl,-t,-dy "
198   endif
199   set mod_loc_dir=$IOIPSLDIR
200   set mod_suffix=mod
201else if $DEC then
202else if $LINUX then
203# Ehouarn 'ifort' compiler
204   #NB: on gnome -O3 ==> NaNs ...
205   set optim="-auto -O2 -fp-model precise -ip -mkl=sequential -align all "
206   set optim90="-auto -O2 -fp-model precise -ip -mkl=sequential -align all "
207   set optimtru90="-auto -O2 -fp-model precise -ip -mkl=sequential -align all "
208#   set opt_link=" -Mfree -lpgf90 -lpgftnrtl -lpghpf -lpghpf2 -L$NCDFLIB -lnetcdf -Bstatic "
209#   set mod_loc_dir=$LIBOGCM
210# ifort puts mod files in local directory
211   set mod_loc_dir="."
212   set mod_suffix=mod
213else if $NEC then
214   set optim90=' -clear -C hopt -float0 -ew -P static -Wf,"-pvctl fullmsg noassume "'
215   set optimtru90=' -clear -f4 -C hopt -float0 -ew -P static -Wf,"-pvctl fullmsg noassume "'
216###   set opt_link=" -C hopt -float0 -ew -P static -L$IOIPSLDIR -lioipsl  -L/u/rech/psl/rpsl003/IOIPSL -lnetcdf_i8r8_v "
217   set opt_link=" -C hopt -float0 -ew -P static -L/SX/usr/local/lib  -lnetcdf_i8r8 "
218   set mod_loc_dir="."
219   set mod_suffix="mod"
220else if $XNEC then
221   set optim90=' -clear -R5 -C vopt -float0 -ew -P static -Wf,"-pvctl loopcnt=40000 fullmsg noassume "'
222   set optimtru90=' -clear -R5 -f4 -C vopt -float0 -ew -P static -Wf,"-pvctl loopcnt=40000 fullmsg noassume "'
223   if $MODIPSL then
224     if $COUPLE then
225       set opt_link="-L$IOIPSLDIR -lsxioipsl -loasis2.4_mpi2 -float0 -ew -P static -I$NCDFINC $NCDFLIB "
226     else
227       set opt_link="-L$IOIPSLDIR -lsxioipsl -float0 -ew -P static -I$NCDFINC $NCDFLIB "
228     endif
229     set mod_loc_dir="./"
230   else
231####     set opt_link=" -C hopt -float0 -ew -P static -L$IOIPSLDIR -lsxioipsl -L /u/rech/psl/rpsl003/IOIPSL -lnetcdf_i8r8_v -I$NCDFINC -L/SX/usr/local/lib -lnetcdf_i8r8"
232     set opt_link=" -C hopt -float0 -ew -P static -I$NCDFINC -L/SX/usr/local/lib -lnetcdf_i8r8"
233     set mod_loc_dir="."
234   endif
235   set mod_suffix="mod"
236
237endif
238
239# Ehouarn: add 'g9fortran' string to pathname
240set nomlib=${machine}
241
242# Impose distinct name for 64 bit Linux machines (to avoid mixing 32 and 64)
243if (`uname` == Linux && `uname -m` == "x86_64") then
244  set nomlib=${machine}64
245endif
246
247########################################################################
248# lecture des options de mymake
249########################################################################
250
251top:
252if ($#argv > 0) then
253    switch ($1:q)
254
255    case -h:
256
257########################################################################
258# Manuel en ligne
259########################################################################
260more <<eod
261
262
263makegcm [Options] prog
264
265
266The makegcm script:
267-------------------
268
2691. compiles a series of subroutines located in the $LMDGCM/libf
270 sub-directories.
271 The objects are then stored in the libraries in $LIBOGCM.
272
2732. then, makegcm compiles program prog.f located by default in
274$LMDGCM/libf/dyn3d and makes the link with the libraries.
275
276Environment Variables '$LMDGCM' and '$LIBOGCM'
277 must be set as environment variables or directly
278 in the makegcm file.
279
280The makegcm command is used to control the different versions of the model
281 in parallel, compiled using the compilation options
282 and the various dimensions, without having to recompile the whole model.
283
284The FORTRAN libraries are stored in directory $LIBOGCM.
285
286
287OPTIONS:
288--------
289
290The following options can either be defined by default by editing the
291makegcm "script", or in interactive mode:
292
293-d imxjmxlm  where im, jm, and lm are the number of longitudes,
294             latitudes and vertical layers respectively.
295
296-t ntrac   Selects the number of tracers present in the model
297
298             Options -d and -t overwrite file
299             $LMDGCM/libf/grid/dimensions.h
300             which contains the 3 dimensions of the
301             horizontal grid
302             im, jm, lm plus the number of tracers passively advected
303             by the dynamics ntrac,
304             in 4 PARAMETER FORTRAN format
305             with a new file:
306             $LMDGCM/libf/grid/dimension/dimensions.im.jm.lm.tntrac
307             If the file does not exist already
308             it is created by the script
309             $LMDGCM/libf/grid/dimension/makdim
310
311-p PHYS    Selects the set of physical parameterizations
312           you want to compile the model with.
313           The model is then compiled using the physical
314           parameterization sources in directory:
315            $LMDGCM/libf/phyPHYS
316
317-g grille  Selects the grid type.
318           This option overwrites file
319           $LMDGCM/libf/grid/fxyprim.h
320           with file
321           $LMDGCM/libf/grid/fxy_grille.h
322           the grid can take the following values:
323           1. reg - the regular grid
324           2. sin - to obtain equidistant points in terms of sin(latitude)
325           3. new - to zoom into a part of the globe
326
327-O "compilation options" set of fortran compilation options to use
328
329-include path
330           Used if the subroutines contain #include files (ccp) that
331           are located in directories that are not referenced by default.
332
333-adjnt     Compiles the adjoint model to the dynamical code.
334
335-olddyn    To compile GCM with "old dynamics"
336
337-filtre  filter
338           To select the longitudinal filter in the polar regions.
339           "filter" corresponds to the name of a directory located in
340           $LMDGCM/libf. The standard filter for the model is "filtrez"
341           which can be used for a regular grid and for a 
342           grid with longitudinal zoom.
343
344-link "-Ldir1 -lfile1 -Ldir2 -lfile2 ..."
345           Adds a link to FORTRAN libraries
346           libfile1.a, libfile2.a ...
347           located in directories dir1, dir2 ...respectively
348           If dirn is a directory with an automatic path
349           (/usr/lib ... for example)
350           there is no need to specify  -Ldirn.
351
352-full      Full (re)compilation (from scratch)
353
354eod
355exit
356
357########################################################################
358# Lecture des differentes options
359########################################################################
360
361    case -d:
362        set dim=$2 ; shift ; shift ; goto top
363                       
364    case -O:
365        set optim="$2" ; set optim90="$2" ; set optimtru90="$2" ; shift ; shift ; goto top
366
367     case -p
368        set physique="$2" ; set phys="PHYS=$physique" ; shift ; shift ; goto top
369
370     case -g
371        set grille="$2" ; shift ; shift ; goto top
372
373     case -t
374        set ntrac=$2 ; shift ; shift ; goto top
375
376     case -include
377        set include="$include -I$2" ; shift ; shift ; goto top
378
379     case -adjnt
380        set opt_dep="$opt_dep adjnt" ; set adjnt="-ladjnt -ldyn3d "
381
382     case -olddyn
383        set dyntype="olddyn" ; shift; goto top
384
385     case -full
386        set full="full" ; shift ; goto top
387
388     case -filtre
389        set filtre=$2 ; shift ; shift ; goto top
390
391     case -link
392        set opt_link="$opt_link $2" ; shift ; shift ; goto top
393
394     case -debug
395        if $HP then
396           set optim90=" -g "
397        else if $SUN then
398           setenv PARALLEL 4
399           set optim90=" -g -C "
400           set optimtru90=" -g -C "
401        else if $CRAY then
402           set optim90="$optim90"" -G1 "
403        else if $LINUX then
404           ## for ifort
405             set optim=" -g -O0 -fpe-all=0 -traceback -ftrapuv -fp-stack-check -check all -debug"
406             set optim90=" -g -O0 -fpe-all=0 -traceback -ftrapuv -fp-stack-check -check all -debug"
407             set optimtru90=" -g -O0 -fpe-all=0 -traceback -ftrapuv -fp-stack-check -check all -debug"
408        else
409           echo "pas d option debug predefinie pour cette machine"
410           exit
411        endif
412        shift ; goto top
413
414     default
415        set code="$1" ; shift ; goto top
416
417   endsw
418endif
419
420echo "apres les opts dim $dim"
421
422########################################################################
423# cas special sans physique
424########################################################################
425if ( "$physique" == 'nophys' ) then
426   set phys="L_PHY= LIBPHY="
427else
428   set src_dirs="$src_dirs aerono$physique phy$physique"
429   set include="$include "'-I$(LIBF)/aerono'"$physique"' -I$(LIBF)/phy'"$physique"
430endif
431set libdyn_phy=""
432set LIBDYN_PHYS=""
433########################################################################
434# choix du nombre de traceur par defaut si il n'a pas ete choisi,
435# suivant la physique
436########################################################################
437
438if ( $ntrac == 0  ) then
439    if ( "$physique" == 'nophys' ) then
440        set ntrac=1
441    else if ( "$physique" == 'lmd' ) then
442        set ntrac=2
443    else if ( "$physique" == 'lmd_test_li' ) then
444        set ntrac=2
445    else if ( "$physique" == 'ec' ) then
446        set ntrac=1
447    else
448        set ntrac = 1
449    endif
450endif
451
452########################################################################
453#subtilites sur le nom de la librairie
454########################################################################
455
456\rm tmp ; touch tmp
457\rm tmp90 ; touch tmp90
458foreach i ( $optim90 )
459   echo $i | sed -e 's/\"//g' -e "s/\'//g" -e 's/-//g' -e 's/://g' -e 's/=//g' -e 's/%//g' >> tmp
460end
461set suf=
462foreach i ( `sort tmp | uniq ` )
463   set suf=$suf$i
464end
465if ( ! $IBM ) then
466   set nomlib="$nomlib$suf"
467endif
468if ( $DEC ) then
469   set nomlib=DEC
470endif
471
472# dimension
473
474echo "dimension avant sed $dim"
475if ( $IBM ) then
476   set dim=`echo $dim | sed -en 's/[^0-9]/ /g'`
477   set dim_=`echo $dim | sed -en 's/[^0-9]/_/g'`
478else if ( $SUN || $XNEC ) then
479   set dim=`echo $dim | sed -e 's/[^0-9]/ /g'` 
480   set dim_=`echo $dim | sed -e 's/[^0-9]/_/g'`
481else
482#   set dim=`echo $dim | sed -n -e 's/[^0-9]/ /gp'`
483#   set dim_=`echo $dim | sed -n -e 's/[^0-9]/_/gp'`
484     set dim=`echo $dim | sed -e 's/[^0-9]/ /g'`
485     set dim_=`echo $dim | sed -e 's/[^0-9]/_/g'`
486endif
487
488# build final name of libraries directory:
489if ( "$dyntype" == "olddyn" ) then
490  set nomlib=${nomlib}_${dim_}_t${ntrac}_${grille}_olddyn
491else
492  set nomlib=${nomlib}_${dim_}_t${ntrac}_${grille}
493endif
494
495# Append 'physique' type, if it is not mars, to nomlib
496if ( "$physique" != "mars" ) then
497  set nomlib=${nomlib}_${physique}
498endif
499
500## M-A-F nomlib trop long sur CRAY pour ar
501if ( $CRAY ) then
502    set nomlib=F90_${dim_}_t${ntrac}
503endif
504if ( $NEC || $XNEC ) then
505    set nomlib=F90_${dim_}_t${ntrac}
506endif
507
508echo "calcul de la dimension"
509set dimc=`echo $dim | wc -w`
510
511if ( "$dimc" == "2" ) then
512  set include="$include "'-I$(LIBF)/dyn2d '
513  set dimh=$dim
514endif
515if ( "$dimc" == "3" ) then
516  if ( "$dyntype" == "olddyn" ) then
517    set include="$include "'-I$(LIBF)/olddyn3d '
518    set src_dirs="$src_dirs olddyn3d dynlonlat_phylonlat dynlonlat_phylonlat/phy$physique"
519  else
520    set include="$include "'-I$(LIBF)/dyn3d '
521    set src_dirs="$src_dirs dyn3d dynlonlat_phylonlat dynlonlat_phylonlat/phy$physique"
522  endif
523  set libdyn_phy="-ldynlonlat_phylonlat"
524  set LIBDYN_PHYS='$(LIBO)/libdynlonlat_phylonlat.a'
525  set dimh=`echo $dim | awk ' { print $1 "." $2 } '`
526endif
527echo "dimc is $dimc"
528
529########################################################################
530# path pour les #include
531########################################################################
532
533set include="$include -I$NCDFINC "
534echo $include
535
536########################################################################
537# Gestion des dimensions du modele.
538# on cree ou remplace le fichier des dimensions/nombre de traceur
539########################################################################
540
541cd $libf/grid
542if ( -f dimensions.h ) then
543  echo "WARNING: you are probably already compiling the model (perhaps"
544  echo " elsewhere). Wait until the first compilation ends before "
545  echo " compiling a different configuration."
546  echo "If you are sure that you are not already compiling, then you"
547  echo " may continue this compilation by answering yes."
548  echo "Do you want to continue?"
549  if ( $< == "yes" ) then
550    #remove old dimensions.h file
551    \rm -f $libf/grid/dimensions.h
552  else
553    exit
554  endif
555endif
556
557# Build the appropriate 'dimensions.h' file
558cd dimension
559./makdim $dim
560# echo contents of dimensions.h to standard output
561cat $libf/grid/dimensions.h
562
563cd $LMDGCM
564# set path to objects directory
565set libo=$libo/$nomlib
566# create objects directory, if it doesn't exist
567if ( ! -d $libo )  then
568   mkdir $libo
569   cd $model
570endif
571
572########################################################################
573# Differentes dynamiques (3d, 2d, 1d)
574########################################################################
575
576set dimension=`echo $dim | wc -w`
577echo dimension $dimension dim $dim
578if ( $dimension == 1 ) then
579  echo "No dynamics"
580##  set dyn="L_DYN= DYN= L_FILTRE= DIRMAIN=phy$physique "
581## NB: we still need to have L_DYN=libdyn3d to reach routines and module
582## objects which are located in dyn3d
583  set dyntype=""
584  set filtre="L_DYN= DYN= FILTRE= L_FILTRE= "
585  set dyn="L_DYN= DYN= L_FILTRE= "
586  set dirmain="phy$physique/dyn1d"
587  set src_dirs="$src_dirs phy$physique/dyn1d "
588  set include="$include "' -I$(LIBF)/phy'"$physique"'/dyn1d'
589endif
590endif
591
592cd $model
593if ( $dimension == 3 ) then
594  cd libf/grid
595  \rm fxyprim.h
596  cp -p fxy_${grille}.h fxyprim.h
597endif
598
599######################################################################
600#   Traitement special pour le nouveau rayonnement de Laurent Li.
601######################################################################
602
603if ( -f $libf/phy$physique/raddim.h ) then
604  if ( -f $libf/phy$physique/raddim.$dimh.h ) then
605    \rm $libf/phy$physique/raddim.h
606    cp -p $libf/phy$physique/raddim.$dimh.h $libf/phy$physique/raddim.h
607    echo $libf/phy$physique/raddim.$dimh.h
608    cat $libf/phy$physique/raddim.$dimh.h
609    cat $libf/phy$physique/raddim.h
610  else
611    echo On peut diminuer la taille de l executable en creant
612    echo le fichier $libf/phy$physique/raddim.$dimh.h
613    \cp -p $libf/phy$physique/raddim.defaut.h $libf/phy$physique/raddim.h
614  endif
615endif
616
617######################################################################
618# Gestion du filtre qui n'existe qu'en 3d.
619######################################################################
620
621# set filtre to 'oldfiltrez' if using -olddyn option
622if ( "$dyntype" == "olddyn" ) then
623  set filtre="oldfiltrez"
624endif
625
626if ( `expr $dimc \> 2` == 1 ) then
627   set filtre="FILTRE=$filtre"
628   if ( "$dyntype" == "olddyn" ) then
629     set src_dirs="$src_dirs oldfiltrez"
630   else
631     set src_dirs="$src_dirs filtrez"
632   endif
633else
634   set filtre="FILTRE= L_FILTRE= L_DYN= "
635endif
636echo "MACRO FILTRE $filtre"
637
638echo "dimc $dimc"
639
640#cleanup for a full recompilation, if requested
641if ("$full" == "full") then
642# remove makefile and $libo
643  cd $model
644  \rm -f makefile
645  \rm -rf $libo/*
646endif
647
648########################################################################
649#  Avant de lancer le make, on recree le makefile si necessaire
650########################################################################
651# c'est a dire dans 3 cas:
652# 1. si la liste des fichiers .F et .h a ete modifiee depuis la
653#    derniere creation du makefile
654# 2. si le fichier contenant cette liste "liste_des_sources"
655#    n'existe pas.
656# 3. Si le makefile n'existe pas.
657########################################################################
658
659cd $model
660find libf -name '*.[Fh]' -print | sort >! tmp77
661#find libf -name '*.[Fh]' -exec egrep -i " *use *ioipsl" {} \; -print >! tmp90
662find libf -name '*.[Fh]90' -print | sort >> tmp90
663
664if (    `diff tmp77 liste_des_sources_f77 | wc -w` \
665     || `diff tmp90 liste_des_sources_f90 | wc -w` \
666     || ! -f makefile \
667     || ! -f liste_des_sources_f90 \
668     || ! -f liste_des_sources_f77 ) then
669        echo "les fichiers suivants ont ete crees ou detruits"
670        echo "ou les fichiers suivants sont passes ou ne sont plus en Fortran 90"
671        diff liste_des_sources_f77 tmp77
672        diff liste_des_sources_f90 tmp90
673        \cp tmp77 liste_des_sources_f77
674        \cp tmp90 liste_des_sources_f90
675        echo "On recree le makefile"
676        echo "src_dirs: $src_dirs"
677        ./create_make_gcm $src_dirs >! tmp
678        \mv tmp makefile
679        echo "Nouveau makefile cree."
680endif
681
682########################################################################
683#  Execution de la comande make
684########################################################################
685
686echo PHYSIQUE $phys
687echo dynamique $dyn $dimension
688echo OPTIM90="$optim90" $filtre LIBO=$libo $dyn PHYS=$phys DIM=$dimc PROG=$code
689echo PATH pour les fichiers INCLUDE $include
690echo OPLINK="$oplink"
691
692if $HP then
693   set f77='fort77 +OP'
694   set f90='jensaisrien'
695   set opt_link="$opt_link -lm"
696else  if $VPP then
697   set f77=frt
698   set f90=$f77
699else if $CRAY then
700   set f77=f90
701   set f90=f90
702else if $LINUX then
703   set f77=ifort
704   set f90=ifort
705   set opt_link=" -L$LIBOGCM -L$NCDFLIB -lnetcdf "
706else if $SUN then
707   set f77=f90
708   set f90=f90
709else if $NEC then
710   set f77=f90
711   set f90=f90
712else if $XNEC then
713   set f77=sxmpif90
714   set f90=sxmpif90
715else
716   set f77=f77
717   set f90=f90
718endif
719
720cd $model
721
722if $VPP then
723  set make="gmake RANLIB=ls"
724else if $CRAY then
725  set make="make RANLIB=ls"
726else if $NEC then
727  set make="make RANLIB=ls"
728else if $LINUX then
729  set make="make -k RANLIB=ranlib"
730else if $XNEC then
731  set make="/usr/local/bin/gmake RANLIB=ls"
732  set make="/usr/freeware/bin/gmake RANLIB=ls"
733else
734  set make="make RANLIB=ranlib"
735endif
736
737set include="$include"" -I$libf/phy$physique"
738
739
740#################################################################
741# Execution de la comande make... ENFIN!
742#################################################################
743
744if $VPP then
745  set optim90=" $optim90 -Am -M$libo"
746  set optimtru90="$optim90"
747else if $SUN then
748 set optim90=" $optim90 -M$libo"
749 set optimtru90=" $optimtru90 "
750else if $NEC then
751 set optim90=" $optim90 -I$libo "
752else if $XNEC then
753 set optim90=" $optim90 -I$libo "
754 set optimtru90=" $optimtru90 -I$libo "
755else if $LINUX then
756# Ehouarn : adapt to gfortran
757 set optim="$optim -I${libo}"
758 set optim90="$optim90 -I${libo}"
759 set optimtru90="$optimtru90 -I${libo}"
760# Ehouarn: remove set mod_loc_dir def below; mod_loc_dir=$localdir (set above)
761# set mod_loc_dir=$libo
762endif
763
764set link="$f90 $optim90"
765
766set ar=ar
767
768if $XNEC then
769  set link="sxld $opt_link"
770  set link="$f90 "
771#  set ar=sxar
772endif
773
774
775cd $localdir
776
777## locate main program (could be in dyn3d or dynlonlat_phylonlat/phy$physique
778##  or phy$physique/dyn1d   and could be .F or .F90)
779set source_code=${code}.F
780set dirmain=dyn${dimc}d
781if ( -f $LMDGCM/libf/dyn3d/${code}.F90 ) then
782  set source_code=${code}.F90
783endif
784if ( -f $LMDGCM/libf/phy${physique}/dyn1d/${code}.F ) then
785  set dirmain=phy${physique}/dyn1d
786  set source_code=${code}.F
787endif
788if ( -f $LMDGCM/libf/phy${physique}/dyn1d/${code}.F90 ) then
789  set dirmain=phy${physique}/dyn1d
790  set source_code=${code}.F90
791endif
792if ( -f $LMDGCM/libf/dynlonlat_phylonlat/phy${physique}/${code}.F ) then
793  set dirmain=dynlonlat_phylonlat/phy${physique}
794  set source_code=${code}.F
795endif
796if ( -f $LMDGCM/libf/dynlonlat_phylonlat/phy${physique}/${code}.F90 ) then
797  set dirmain=dynlonlat_phylonlat/phy${physique}
798  set source_code=${code}.F90
799endif
800
801echo $make -f $LMDGCM/makefile \
802OPTION_DEP="$opt_dep" OPTION_LINK="$opt_link" \
803OPTIM="$optim" \
804OPTIM90="$optim90" \
805OPTIMTRU90="$optimtru90" \
806INCLUDE="$include" \
807$filtre \
808LIBO=$libo \
809$phys \
810LIBDYN_PHYS=${LIBDYN_PHYS} \
811DIM=$dimc \
812DYNTYPE="$dyntype" \
813L_DYN_PHY="$libdyn_phy" \
814L_ADJNT="$adjnt" \
815LOCAL_DIR="$localdir"  \
816F77="$f77" \
817F90="$f90" \
818OPLINK="$oplink" \
819LINK="$link" \
820GCM="$LMDGCM" \
821MOD_LOC_DIR=$mod_loc_dir \
822MOD_SUFFIX=$mod_suffix \
823AR=$ar \
824DIRMAIN=$dirmain \
825SOURCE=$source_code \
826PROG=$code
827
828
829$make -f $LMDGCM/makefile \
830OPTION_DEP="$opt_dep" OPTION_LINK="$opt_link" \
831OPTIM="$optim" \
832OPTIM90="$optim90" \
833OPTIMTRU90="$optimtru90" \
834INCLUDE="$include" \
835$filtre \
836LIBO=$libo \
837$phys \
838LIBDYN_PHYS=${LIBDYN_PHYS} \
839DIM=$dimc \
840DYNTYPE="$dyntype" \
841L_DYN_PHY="$libdyn_phy" \
842L_ADJNT="$adjnt" \
843LOCAL_DIR="$localdir"  \
844F77="$f77" \
845F90="$f90" \
846OPLINK="$oplink" \
847LINK="$link" \
848GCM="$LMDGCM" \
849MOD_LOC_DIR=$mod_loc_dir \
850MOD_SUFFIX=$mod_suffix \
851AR=$ar \
852DIRMAIN=$dirmain \
853SOURCE=$source_code \
854PROG=$code
855
856# cleanup, remove dimensions.h
857\rm -f $libf/grid/dimensions.h
Note: See TracBrowser for help on using the repository browser.