source: trunk/LMDZ.COMMON/create_make_gcm @ 1486

Last change on this file since 1486 was 1403, checked in by emillour, 10 years ago

All models: Reorganizing the physics/dynamics interface.

  • makelmdz and makelmdz_fcm scripts adapted to handle the new directory settings
  • misc: (replaces what was the "bibio" directory)
  • Should only contain extremely generic (and non physics or dynamics-specific) routines
  • Therefore moved initdynav.F90, initfluxsto.F, inithist.F, writedynav.F90, write_field.F90, writehist.F to "dyn3d_common"
  • dynlonlat_phylonlat: (new interface directory)
  • This directory contains routines relevent to physics/dynamics grid interactions, e.g. routines gr_dyn_fi or gr_fi_dyn and calfis
  • Moreover the dynlonlat_phylonlat contains directories "phy*" corresponding to each physics package "phy*" to be used. These subdirectories should only contain specific interfaces (e.g. iniphysiq) or main programs (e.g. newstart)
  • phy*/dyn1d: this subdirectory contains the 1D model using physics from phy*

EM

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