source: trunk/LMDZ.GENERIC/create_make_gcm @ 2198

Last change on this file since 2198 was 1521, checked in by emillour, 9 years ago

All GCMs: Updates to make planetary codes (+Earth) setups converge.

  • Made a "phy_common" directory in libf, to contain routines common (wrt structural nature of underlying code/grid) to all LMDZ-related physics packages.
  • moved all "mod_phys_*" and "mod_grid_phy_lmdz" files from dynlonlat_phylonlat to "phy_common"
  • moved "ioipsl_getincom_p.F90 from "misc" to "phy_common" and modified it to match Earth GCM version and renamed it ioipsl_getin_p_mod.F90
  • added an "abort_physics" (as in Earth GCM) in "phy_common"
  • added a "print_control_mod.F90 (as in Earth GCM) in phy_common
  • made similar changes in LMDZ.GENERIC and LMDZ.MARS

EM

  • Property svn:executable set to *
File size: 9.3 KB
Line 
1#!/bin/sh
2#set -xv
3#
4# Ehouarn: added the following feature:
5#          create_make_gcm must be called with list of directories
6#          which contain header (or modules) which should be scanned
7#          by create_make_gcm when checking dependencies.
8#          Example:
9#          create_make_gcm dyn3d grid
10#          means that header/modules will be looked for in directories
11#          ., dyn3d and grid
12#
13
14# arguments given to create_make_gcm are the directories to scan
15src_dirs=$*
16
17machine=`hostname`
18os=`uname`
19gcm=`pwd`
20logfile=$gcm/create_make_gcm.log
21rm -f $logfile ; touch -f $logfile
22libf=$gcm/libf
23libo=$gcm/libo
24CRAY=0
25if [ "$machine" = "atlas" -o "$machine" = "etoile" -o "$machine" = "axis" ] ; then
26  CRAY=1
27fi
28XNEC=0
29if [ "$machine" = "rhodes" ] ; then
30  XNEC=1
31fi
32VPP=0
33if [ "$machine" = "nymphea0" ] ; then
34  VPP=1
35fi
36#
37echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
38echo "# Definitions de Macros pour Make"
39echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
40echo 
41echo "# create_make_gcm arguments: $*"
42echo
43echo "# Repertoires :"
44echo
45echo "GCM     = "$gcm
46if [ "$CRAY" = '0' ] ; then
47   echo "MACHINE = sun4"
48fi
49echo 'LIBF    = $(GCM)/libf'
50if [ "$CRAY" = '0' ] ; then
51#   echo 'LIBO    = $(GCM)/libo/$(MACHINE)'
52   echo 'LIBO    = $(LIBOGCM)/$(MACHINE)'
53else
54   echo 'LIBO    = $(GCM)/libo'
55fi
56#echo 'LOCAL_DIR=$(GCM)'
57#echo $localdir
58echo "LOCAL_DIR=`echo $localdir`"
59echo 'MISC    = $(LIBF)/misc'
60#echo 'AERONOMARS    = $(LIBF)/aeronomars'
61echo "FILTRE   = filtre"
62echo "PHYS  = "
63echo 'DYN  = $(DYNTYPE)'
64echo 'LIBPHY = $(LIBO)/libphy$(PHYS).a'
65echo 'LIBDYN_PHY = $(LIBO)/libdynlmdz_phy$(PHYS).a'
66echo 'DIRMAIN= $(DYN)$(DIM)d'
67echo 'RM=rm'
68echo
69echo "OPLINK = "
70echo
71echo '# Les differentes librairies pour l"edition des liens:'
72echo
73echo 'L_DYN      = -ldyn$(DIM)d'
74echo 'L_FILTRE   = -l$(FILTRE)'
75echo 'L_DYN_PHY = -ldynlmdz_phy$(PHYS) '
76echo 'L_PHY = -lphy$(PHYS) -lphy_common'
77echo 'L_MISC    = -lmisc'
78#echo 'L_AERONOMARS    = -laeronomars'
79echo 'L_ADJNT    ='
80echo
81echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
82echo "# Option de compilation FORTRAN"
83echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
84echo
85   echo 'COMPILE = $(F77) $(OPTIM) $(INCLUDE) -c'
86   echo 'COMPILE90 = $(F90) $(OPTIM90) $(INCLUDE) -c'
87   echo 'COMPTRU90 = $(F90) $(OPTIMTRU90) $(INCLUDE) -c'
88   echo "LINK    = $LINK"
89   echo "AR      = $AR"
90echo
91echo
92echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
93echo "# Creation des differents executables"
94echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
95echo
96echo "# Executables:"
97echo "# ------------"
98echo
99echo "PROG = code"
100echo 'DYN  = dyn$(DIM)d'
101echo
102echo 'main : $(DYN) misc phys phy_common dyn_phy $(OPTION_DEP) '
103echo '  cd $(LIBO) ; $(RANLIB) lib*.a ; cd $(GCM) ;\'
104echo '  cd $(LOCAL_DIR); \'
105echo '  $(COMPILE90) $(LIBF)/$(DIRMAIN)/$(SOURCE) -o $(PROG).o ; \'
106echo '  $(LINK) $(PROG).o -L$(LIBO) $(L_DYN) $(L_DYN_PHY) $(L_ADJNT) $(L_FILTRE) $(L_PHY) $(L_DYN_PHY) $(L_MISC) $(L_DYN) $(L_PHY) $(OPLINK) $(OPTION_LINK) -o $(LOCAL_DIR)/$(PROG).e ; $(RM) $(PROG).o '
107echo
108echo 'dyn : $(LIBO)/libdyn$(DIM)d.a $(FILTRE)$(DIM)d'
109echo
110echo 'olddyn : $(LIBO)/libolddyn$(DIM)d.a $(FILTRE)$(DIM)d'
111echo
112echo 'phys : $(LIBPHY)'
113echo 'phy_common : $(LIBPHY_COMMON)'
114echo
115echo 'dyn3d : $(LIBO)/libdyn3d.a $(LIBO)/lib$(FILTRE).a'
116echo 'dyn2d : $(LIBO)/libdyn2d.a'
117echo 'dyn1d : '
118echo
119echo 'dyn_phy: $(LIBDYN_PHYS)'
120echo
121echo 'misc : $(LIBO)/libmisc.a'
122echo
123#echo 'aeronomars : $(LIBO)/libaeronomars.a'
124#echo
125echo 'adjnt : $(LIBO)/libadjnt.a'
126echo
127echo '$(FILTRE)3d : $(LIBO)/lib$(FILTRE).a'
128echo
129echo '$(FILTRE)2d :'
130echo
131echo '$(FILTRE)1d :'
132echo
133echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
134echo "# Contenu des differentes bibliotheques"
135echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
136echo
137echo
138cd $libf >/dev/null 2>&1
139
140for diri in $src_dirs ; do
141
142   if [ -d $diri ] ; then
143   if [ "`ls $diri/*.F`" != "" ] || [ "`ls $diri/*.[fF]90`" != "" ]  ; then 
144#      cd $diri >/dev/null 2>&1
145      echo
146      listlib=""
147# Liste des fichiers .F et .F90 n'etant pas des programmes principaux
148      for fili in `ls $diri/*.[fF]` ; do
149         # Check if file is a routine or main program
150         # i.e: look for the "program" keword preceeded by leading spaces
151         test=` (  head $fili | grep -i '^ *program' ) `
152         # if it is not a main program, add it to the list
153         if [ "$test" = "" ] ; then listlib=$listlib" "$fili ; fi
154      done
155      for fili in `ls $diri/*.[fF]90` ; do
156         # Check if file is a routine or main program
157         # i.e. look for "program" keyword (with possibly some leading spaces)
158         test=` (  head $fili | grep -i '^ \{0,\}program' ) `
159         # if it is not a main program, add it to the list
160         if [ "$test" = "" ] ; then listlib=$listlib" "$fili ; fi 
161      done
162      echo
163      echo $listlib >> $logfile
164      echo
165      # topdiri contains main dir name (without trailing "/blabla" for subdirs)
166      topdiri=${diri%/*}
167      echo "#=================================================================="
168      echo "# Contenu de la bibliotheque correspondant au Directory "$diri
169      echo "#=================================================================="
170      echo
171      for trufile in $listlib ; do
172         fili=`echo $trufile | awk -F/ ' { print $NF } ' | cut -d. -f1`
173         echo '$(LIBO)/lib'$topdiri".a : " '$(LIBO)/lib'$topdiri".a("$fili".o)"
174         echo
175      done
176      echo '.PRECIOUS   : $(LIBO)/lib'$topdiri'.a'
177      echo
178      echo
179      echo "# Compilation of elements in $diri of library lib"$topdiri".a"
180      echo
181      for trufile in $listlib ; do
182         fili=`echo $trufile | awk -F/ ' { print $NF } ' | cut -d. -f1`
183         F90=0 ; egrep -i '^ *use ' $trufile > /dev/null 2>&1 && F90=1
184                 egrep -i '^ *module ' $trufile > /dev/null 2>&1 && F90=1
185                 egrep -i '#include*.inc ' $trufile > /dev/null 2>&1 && F90=1
186         str1='$(LIBO)/lib'$topdiri'.a('$fili'.o) : $(LIBF)/'$trufile
187         [ "$fili" = "$diri/chem.subs" ] && str1=$str1' $(LIBF)/'$diri/chem.mods.F
188
189##########################################################################
190# TRAITEMENT DES DEPENDANCES
191# Differents cas de dependance correspondant a des include ou des
192# use module.
193# soit dans le repertoire local soit dans un autre.
194# Pour dyn3d, il faudrait remplacer la chaine de caractere par $DYN
195# ou quelque chose du genre.
196##########################################################################
197
198         for stri in ` ( sed -e '/^[cC\!]/d' $trufile | sed -e "/\#include /s/\#include /XXnclude /" -e "/include /s/include /XXnclude /" -e "/INCLUDE /s/INCLUDE /XXnclude /" | sed -n "/XXnclude /s/XXnclude//p" | sed 's/\"//g' | sort | uniq ; sed -e '/^[cC\!]/d' $trufile | egrep -i '^ *use ' | sed -e 's/,/ /' | awk ' { print $2 } ' | sort | uniq ) ` ; do
199            echo $trufile $fili $stri >> $logfile
200            strj=`echo $stri | tr [A-Z] [a-z]`
201            str2=""
202            for dirinc in $src_dirs ; do
203# Recherche dans l'ordre hierarchique inverse car seule la derniere
204# ligne est conservee
205#               if [ $dirinc = phydev ] ; then
206#                   dirstr='$(PHYS)'
207#                   libstr='phy$(PHYS)'
208#               else
209                   dirstr=$dirinc
210                   libstr=$dirinc
211#               fi
212               echo dirinc $dirinc >> $logfile
213               if [ -f $dirinc/$stri ] ; then
214                  str2='$(LIBF)/'$dirstr/$stri
215               elif [ -f $dirinc/$strj ] ; then
216                  str2='$(LIBF)/'$dirstr/$stri
217               elif [ -f $dirinc/$strj.[fF]90 ]  || [ -f $dirinc/$strj.[fF] ]  ; then 
218                  strlib=`echo $libstr | awk -F/ ' { print $1 } '`
219                  str2='$(LIBO)/lib'$strlib'.a('$strj'.o)'
220               elif [ -f $dirinc/$stri.[fF]90 ]  || [ -f $dirinc/$stri.[fF] ]  ; then 
221                  strlib=`echo $libstr | awk -F/ ' { print $1 } '`
222                  str2='$(LIBO)/lib'$strlib'.a('$stri'.o)'
223               fi
224               echo stri $stri  >> $logfile
225               echo str2 $str2  >> $logfile
226            done
227               echo dernier str2 $str2  >> $logfile
228            if [ "$str2" = "" ] ; then
229               echo Warn: Include $diri $trufile $fili $stri pas trouve >> $logfile
230            elif [ "$str2" = "$str1" ] ; then
231               echo Warn: Include $diri $trufile $fili $stri $str1 trouve 2x >> $logfile
232            else
233               echo $str1 \\
234               str1=$str2
235            fi
236         done # Fin de la boucle sur les dependances et ecriture de la derniere
237         echo $str1
238         # Compile in LIBO directory; and before compiling, remove
239         # object from library
240         echo ' cd $(LIBO); \'
241         echo ' $(AR) d $(LIBO)/lib'$topdiri'.a '$fili'.o ; \'
242         if [ "$F90" -eq '0' ] ; then
243         ## Fixed Form Fortran 77
244           echo '       $(COMPILE) $(LIBF)/'$trufile' ; \'
245         else
246         ## Fortran 90
247           if [ `echo $trufile | cut -d. -f2` = F90 ] ; then
248              ## Free Form
249              echo '    $(COMPTRU90) $(LIBF)/'$trufile' ; \'
250           else
251              echo '    $(COMPILE90) $(LIBF)/'$trufile' ; \'
252           fi
253         fi
254         # Put generated object in library
255         echo ' $(AR) r $(LIBO)/lib'$topdiri'.a '$fili'.o ; $(RM) '$fili'.o ; \'
256         echo
257      done
258#       
259      echo
260   cd $libf
261   fi
262   fi
263done
Note: See TracBrowser for help on using the repository browser.