source: trunk/LMDZ.COMMON/create_make_gcm @ 985

Last change on this file since 985 was 979, checked in by emillour, 11 years ago

Common dynamics:
Updates in the dynamics (seq and ) to keep up with updates
in LMDZ5 (up to LMDZ5 trunk, rev 1760):

  • General stuff (essentially to keep up with Earth model):
  • Updated makelmdz_fcm and makelmdz (more control on dimension.h, added option -mem, although it is not usefull for now)
  • Updated build_gcm with more control over fcm
  • Updated create_make_gcm (enable looking for code in subdirectories)
  • bibio:
  • updates (just renaming the files actually...) new_unit.F90 => new_unit_m.F90, pchsp_95.F90 => pchsp_95_m.F90 and pchfe_95.F90 => pchfe_95_m.F90
  • filtrez:
  • mod_fft.F90: use more baseline CPP directives for preprocessor compatibility
  • mod_filtre_fft_loc.F90: added this new file
  • filtreg_mod.f90: added calls to init_..._loc
  • filtreg.F: fixed calls to DGEMM into SGEMM (preprocessing does the switch)
  • dyn3d:
  • removed obsolete files: etat0_netcdf.F90 limit_netcdf.F90

pres2lev.F90

  • added new file : pres2lev_mod.F90 (module containing "old" pres2lev)
  • gcm.F: changed args to call to inidissip (added arg "vert_prof_dissip")
  • inidissip.F90: added arg "vert_prof_dissip" and the "earth model" discterizations (flagged with "planet_type=="earth")
  • comdissnew.h: added 'vert_prof_dissip' to the common block
  • guide_mod.F90: added the "use pres2lev_mod"
  • conf_gcm.F: cosmetics, and evaluation of vert_prof_dissip, (and also of dissip_* factors, for Earth model)
  • comconst.h : added dissip_factz,dissip_zref variables (for Earth mode dissip)
  • dyn3dpar:
  • removed obsolete files: etat0_netcdf.F90 limit_netcdf.F90

pres2lev.F90 mod_const_para.F90

  • added new files: pres2lev_mod.F90 (module containing "old" pres2lev)

mod_const_mpi

  • abort_gcm : better control of abort in parallel mode
  • gcm.F: changed args to call to inidissip (added arg "vert_prof_dissip")
  • inidissip.F90: added arg "vert_prof_dissip" and the "earth model" discterizations (flagged with "planet_type=="earth")
  • comdissnew.h: added 'vert_prof_dissip' to the common block
  • filtreg_p.F : bug correction (array bounds)
  • guide_p_mod.F90 : added the "use pres2lev_mod"
  • conf_gcm.F : cosmetics (and evaluation of vert_prof_dissip , and

also of dissip_* factors, for Earth model)
plus check if "adjust" is indeed not used in OpenMP

  • comconst.h : add dissip_factz,dissip_zref variables (for Earth mode dissip)

EM

File size: 10.7 KB
RevLine 
[1]1#!/bin/sh
2#
[66]3# $Id: create_make_gcm 1461 2010-12-03 11:12:25Z emillour $
[1]4#
5#set -xv
[979]6
7rm -f create_make_gcm.log
8
[1]9machine=`hostname`
10os=`uname`
11gcm=`pwd`
12libf=$gcm/libf
13libo=$gcm/libo
14CRAY=0
15if [ "$machine" = "atlas" -o "$machine" = "etoile" -o "$machine" = "axis" ] ; then
16  CRAY=1
17fi
18XNEC=0
19if [ "$machine" = "rhodes" ] ; then
20  XNEC=1
21fi
22X6NEC=0
23if [ "$machine" = "mercure" ] ; then
24  X6NEC=1
25fi
26X8BRODIE=0
27if [ "$machine" = "brodie" ] ; then
28  X8BRODIE=1
29fi
30VPP=0
31if [ "$machine" = "nymphea0" ] ; then
32  VPP=1
33fi
34#
35echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
36echo "# Definitions de Macros pour Make"
37echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
38echo
39echo "# Repertoires :"
40echo
41echo "GCM     = "$gcm
42echo 'LIBF    = $(GCM)/libf'
43if [ "$CRAY" = '0' ] ; then
44#   echo 'LIBO    = $(GCM)/libo/$(MACHINE)'
45   echo 'LIBO    = $(LIBOGCM)/$(MACHINE)'
46else
47   echo 'LIBO    = $(GCM)/libo'
48fi
49#echo 'LOCAL_DIR=$(GCM)'
50#echo $localdir
51echo "LOCAL_DIR=`echo $localdir`"
52echo 'BIBIO    = $(LIBF)/bibio'
53echo "FILTRE   = filtre"
54echo "PHYS  = "
55echo "DYN  = dyn "
56echo 'LIBPHY = $(LIBO)/libphy$(PHYS).a'
57echo 'DIRMAIN=dyn$(DIM)d$(FLAG_PARA)'
58echo 'RM=rm'
59echo
60echo "OPLINK = "
61echo
62echo '# Les differentes librairies pour l"edition des liens:'
63echo
[66]64echo 'dyn3d            = $(LIBO)/libdyn3d.a $(LIBO)/lib$(FILTRE).a'
65echo 'dyn3dpar      = $(LIBO)/libdyn3dpar.a $(LIBO)/lib$(FILTRE).a'
66echo 'dyn2d            = $(LIBO)/libdyn2d.a'
67echo 'dyn1d            = $(LIBO)/libdyn1d.a'
68echo 'L_DYN      = -ldyn$(DIM)d$(FLAG_PARA)'
69echo 'L_FILTRE   = -l$(FILTRE)'
70echo 'L_PHY = -lphy$(PHYS) '
71echo 'L_BIBIO    = -lbibio'
72echo 'L_ADJNT    ='
73echo 'L_COSP     = -lcosp'
[1]74
75echo
76echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
77echo "# Option de compilation FORTRAN"
78echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
79echo
80   echo 'COMPILE = $(F77) $(OPTIM) $(INCLUDE) -c'
81   echo 'COMPILE90 = $(F90) $(OPTIM90) $(INCLUDE) -c'
82   echo 'COMPTRU90 = $(F90) $(OPTIMTRU90) $(INCLUDE) -c'
83   echo "LINK    = $LINK"
84   echo "AR      = $AR"
85echo
86echo
[104]87echo '#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'
88echo '# Option de compilation C'
89echo '#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'
90echo
91echo 'COMPILEC = $(CCC) $(OPTIMC) $(INCLUDEC) -c'
92echo
93echo
[1]94echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
95echo "# Creation des differents executables"
96echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
97echo
98echo "# Executables:"
99echo "# ------------"
100echo
101echo "PROG = code"
102echo
103#echo 'main : chimie $(DYN) bibio phys $(OPTION_DEP) '
[814]104echo 'main : bibio $(DYN) phys $(OPTION_DEP) '
[1]105echo '  cd $(LIBO) ; $(RANLIB) lib*.a ; cd $(GCM) ;\'
106echo '  cd $(LOCAL_DIR); \'
107echo '  $(COMPILE90) $(LIBF)/$(DIRMAIN)/$(SOURCE) -o $(PROG).o ; \'
108echo '  $(LINK) $(PROG).o -L$(LIBO) $(L_DYN) $(L_ADJNT) $(L_COSP) $(L_FILTRE) $(L_PHY) $(L_DYN) $(L_BIBIO) $(L_DYN) $(OPLINK) $(OPTION_LINK) -o $(LOCAL_DIR)/$(PROG).e ; $(RM) $(PROG).o '
109echo
110echo 'dyn : $(LIBO)/libdyn$(DIM)d$(FLAG_PARA).a $(FILTRE)$(DIM)d'
111echo
112echo 'phys : $(LIBPHY)'
113echo
114#echo 'chimie : $(LIBO)/libchimie.a'
115echo
116echo 'bibio : $(LIBO)/libbibio.a'
117echo
118echo 'adjnt : $(LIBO)/libadjnt.a'
119echo
120echo 'cosp : $(LIBO)/libcosp.a'
121echo
[104]122echo 'chimtitan : $(LIBO)/libchimtitan.a'
123echo 
[1]124echo '$(FILTRE)3d : $(LIBO)/lib$(FILTRE).a'
125echo
126echo '$(FILTRE)2d :'
127echo
128echo '$(FILTRE)1d :'
129echo
130echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
131echo "# Contenu des differentes bibliotheques"
132echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
133echo
134echo
135cd $libf >/dev/null 2>&1
136for diri in ` ls `
137do
138   if [ -d $diri ] ; then
[979]139   if [ "`ls $diri/*.F $diri/*/*.F`" != "" ] || [ "`ls $diri/*.F90 $diri/*/*.F90`" != "" ]  ; then 
140#      cd $diri >/dev/null 2>&1
[1]141      echo
142      listlib=""
[979]143# Liste des fichiers .F et .F90 n'etant pas des programmes principaux
144      for fili in `ls $diri/*.F $diri/*/*.F`
[1]145      do
[634]146         # Check if file is a routine or main program
147         # i.e: look for the "program" keword preceeded by leading spaces
[979]148         test=` (  head $fili | grep -i '^ *program' ) `
[1]149         if [ "$test" = "" ] ; then 
[634]150            # if it is not a main program, add it to the list
[1]151            listlib=$listlib" "$fili
152         fi
153      done
[979]154      for fili in `ls $diri/*.F90 $diri/*/*.F90`
[1]155      do
[634]156         # Check if file is a routine or main program
157         # i.e. look for "program" keyword (with possibly some leading spaces)
[979]158         test=` (  head $fili | grep -i '^ \{0,\}program' ) `
[1]159         if [ "$test" = "" ] ; then
[634]160            # if it is not a main program, add it to the list
[1]161            listlib=$listlib" "$fili
162         fi 
163      done
164#
165      echo
[979]166      echo $listlib >> create_make_gcm.log
[1]167      echo
168      echo "#======================================================================="
169      echo "# Contenu de la bibliotheque correspondant au Directory "$diri
170      echo "#======================================================================="
171      echo
[979]172      for trufile in $listlib
[1]173      do
[979]174         fili=`echo $trufile | awk -F/ ' { print $NF } ' | cut -d. -f1`
[1]175         echo '$(LIBO)/lib'$diri".a : " '$(LIBO)/lib'$diri".a("$fili".o)"
176         echo
177      done
178      echo '.PRECIOUS   : $(LIBO)/lib'$diri'.a'
179      echo
180      echo
181      echo "# Compilation des membres de la bibliotheque lib"$diri".a"
182      echo
[979]183      for trufile in $listlib
[1]184      do
[979]185#         if [ -f $fili.F90 ] ; then
186#           trufile=$fili.F90
187#         else
188#           trufile=$fili.F
189#         fi
190         fili=`echo $trufile | awk -F/ ' { print $NF } ' | cut -d. -f1`
[1]191         F90=0 ; egrep -i '^ *use ' $trufile > /dev/null 2>&1 && F90=1
192                 egrep -i '^ *module ' $trufile > /dev/null 2>&1 && F90=1
193                 egrep -i '#include*.inc ' $trufile > /dev/null 2>&1 && F90=1
[979]194         str1='$(LIBO)/lib'$diri'.a('$fili'.o) : $(LIBF)/'$trufile
[1]195         [ "$fili" = "chem.subs" ] && str1=$str1' $(LIBF)/'$diri/chem.mods.F
196
[979]197##########################################################################
198# TRAITEMENT DES DEPENDANCES
[1]199# Differents cas de dependance correspondant a des include ou des
200# use module.
201# soit dans le repertoire local soit dans un autre.
[979]202# Pour dyn3d, il faudrait remplacer la chaine de caractere par $DYN
203# ou quelque chose du genre.
204##########################################################################
[1]205
[979]206         for stri in ` ( sed -e '/^[cC\!]/d' $trufile | sed -n "/\#include/s/\#include//p" | sed 's/\"//g' ; sed -e '/^[cC\!]/d' $trufile | egrep -i '^ *use ' | sed -e 's/,/ /' | awk ' { print $2 } ' ) `
207         do
208            echo $trufile $fili $stri >> create_make_gcm.log
209            strj=`echo $stri | tr [A-Z] [a-z]`
210            str2=""
211            for dirinc in filtrez bibio grid dyn3d $diri $diri/*/ ; do
212# Recherche dans l'ordre hierarchique inverse car seule la derniere
213# ligne est conservee
214               if [ -f $dirinc/$stri ] ; then
215                  str2='$(LIBF)/'$dirinc/$stri
216               elif [ -f $dirinc/$strj ] ; then
217                  str2='$(LIBF)/'$dirinc/$stri
218               elif [ -f $dirinc/$strj.F90 ]  || [ -f $dirinc/$strj.F ]  ; then 
219                  strlib=`echo $dirinc | awk -F/ ' { print $1 } '`
220                  str2='$(LIBO)/lib'$strlib'.a('$strj'.o)'
221               fi
222            done
223            if [ "$str2" = "" ] ; then
224               echo Warn: Include $diri $trufile $fili $stri pas trouve >> $gcm/create_make_gcm.log
225            elif [ "$str2" = "$str1" ] ; then
226               echo Warn: Include $diri $trufile $fili $stri $str1 trouve 2x >> $gcm/create_make_gcm.log
227            else
[1]228               echo $str1 \\
[979]229               str1=$str2
[1]230            fi
[979]231         done # Fin de la boucle sur les dependances et ecriture de la derniere
[1]232         echo $str1
[66]233         # Compile in LIBO directory; and before compiling, remove
234         # object from library
235         echo ' cd $(LIBO); \'
236         echo ' $(AR) d $(LIBO)/lib'$diri'.a '$fili'.o ; \'
[1]237         if [ "$F90" -eq '0' ] ; then
[66]238         ## Fixed Form Fortran 77
[979]239           echo '       $(COMPILE) $(LIBF)/'$trufile' ; \'
[1]240         else
[66]241         ## Fortran 90
[1]242           if [ -f $fili.F90 ] ; then
[66]243              ## Free Form
[979]244              echo '    $(COMPTRU90) $(LIBF)/'$trufile' ; \'
[1]245           else
[979]246              echo '    $(COMPILE90) $(LIBF)/'$trufile' ; \'
[1]247           fi
248         fi
[66]249         # Put generated object in library
[1]250         echo ' $(AR) r $(LIBO)/lib'$diri'.a '$fili'.o ; $(RM) '$fili'.o ; \'
251         echo ' cd $(GCM)'
252         echo
253      done
254#       
255      echo
[104]256      cd $libf
257##############################
258## CAS DES FICHIERS EN C
259######
260   elif [ "`ls $diri/*.c`" != "" ] ; then 
261      cd $diri >/dev/null 2>&1
262      echo
263      listlib=""
264      for i in `ls *.c`
265      do
266         fili=`basename $i .c`
[634]267         # Check if file is a function or main program
268         # i.e. look for "int main" keywords (with possibly some leading spaces)
269         test=` (  head $i | grep '^ \{0,\}int main' ) `
[104]270         if [ "$test" = "" ] ; then 
[634]271            # if it is not a main program, add it to the list
[104]272            listlib=$listlib" "$fili
273         fi
274      done
275#
276      echo
277      echo
278      echo '#======================================================================='
279      echo '# Contenu de la bibliotheque correspondant au Directory '$diri
280      echo '#======================================================================='
281      echo
282      for fili in $listlib
283      do
284         echo '$(LIBO)/lib'$diri".a : " '$(LIBO)/lib'$diri".a("$fili".o)"
285         echo
286      done
287      echo '.PRECIOUS   : $(LIBO)/lib'$diri'.a'
288      echo
289      echo
290      echo '# Compilation des membres de la bibliotheque lib'$diri'.a'
291      echo
292      for fili in $listlib
293      do
294         str1='$(LIBO)/lib'$diri'.a('$fili'.o) : $(LIBF)/'$diri/$fili.c
295         for stri in ` ( sed -n "/\#include/s/\#include//p" $fili.c  | sed 's/\"//g' ) `
296         do
297            if [ -f $stri ] ; then
298               echo $str1 \\
299               str1='$(LIBF)/'$diri'/'$stri
300            else
301               for dirinc in dyn3d grid bibio
302               do
303                  if [ -f ../$dirinc/$stri ] ; then
304                     echo $str1 \\
305                     str1='$(LIBF)/'`cd .. ; ls */$stri | head -1`
306                  fi
307               done
308            fi
309         done
310         echo $str1
311         # Compile in LIBO directory; and before compiling, remove
312         # object from library
313         echo ' cd $(LIBO); \'
314         echo ' $(AR) d $(LIBO)/lib'$diri'.a '$fili'.o ; \'
315         ## C
316         echo ' $(COMPILEC) $(LIBF)/'$diri'/'$fili'.c; \'
317         # Put generated object in library
318         echo ' $(AR) r $(LIBO)/lib'$diri'.a '$fili'.o ; $(RM) '$fili'.o ; \'
319         echo ' cd $(GCM)'
320         echo
321      done
322#       
323      echo
324      cd $libf
325##############################
[1]326   fi
327   fi
328done
Note: See TracBrowser for help on using the repository browser.