source: LMDZ5/trunk/create_make_gcm @ 1714

Last change on this file since 1714 was 1714, checked in by Laurent Fairhead, 11 years ago

possibilité de ranger la physique en sous-répertoires


routines in physics can be stored in subdirectories of the phylmd directory

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 7.6 KB
Line 
1#!/bin/sh
2#
3# $Id: create_make_gcm 1714 2013-01-18 18:10:19Z fairhead $
4#
5#set -xv
6
7rm -f create_make_gcm.log
8
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
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'
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
87echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
88echo "# Creation des differents executables"
89echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
90echo
91echo "# Executables:"
92echo "# ------------"
93echo
94echo "PROG = code"
95echo
96#echo 'main : chimie $(DYN) bibio phys $(OPTION_DEP) '
97echo 'main : $(DYN) bibio phys $(OPTION_DEP) '
98echo '  cd $(LIBO) ; $(RANLIB) lib*.a ; cd $(GCM) ;\'
99echo '  cd $(LOCAL_DIR); \'
100echo '  $(COMPILE90) $(LIBF)/$(DIRMAIN)/$(SOURCE) -o $(PROG).o ; \'
101echo '  $(LINK) $(PROG).o -L$(LIBO) $(L_DYN) $(L_ADJNT) $(L_COSP) $(L_PHY) $(L_DYN) $(L_BIBIO) $(L_DYN) $(L_FILTRE) $(OPLINK) $(OPTION_LINK) -o $(LOCAL_DIR)/$(PROG).e ; $(RM) $(PROG).o '
102echo
103echo 'dyn : $(LIBO)/libdyn$(DIM)d$(FLAG_PARA).a $(FILTRE)$(DIM)d'
104echo
105echo 'phys : $(LIBPHY)'
106echo
107#echo 'chimie : $(LIBO)/libchimie.a'
108echo
109echo 'bibio : $(LIBO)/libbibio.a'
110echo
111echo 'adjnt : $(LIBO)/libadjnt.a'
112echo
113echo 'cosp : $(LIBO)/libcosp.a'
114echo
115echo '$(FILTRE)3d : $(LIBO)/lib$(FILTRE).a'
116echo
117echo '$(FILTRE)2d :'
118echo
119echo '$(FILTRE)1d :'
120echo
121echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
122echo "# Contenu des differentes bibliotheques"
123echo "#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
124echo
125echo
126cd $libf >/dev/null 2>&1
127
128for diri in ` ls ` ; do
129
130   if [ -d $diri ] ; then
131   if [ "`ls $diri/*.F $diri/*/*.F`" != "" ] || [ "`ls $diri/*.F90 $diri/*/*.F90`" != "" ]  ; then 
132#      cd $diri >/dev/null 2>&1
133      echo
134      listlib=""
135# Liste des fichiers .F et .F90 n'etant pas des programmes principaux
136      for fili in `ls $diri/*.F $diri/*/*.F` ; do
137         test=` (  head $fili | grep '      PROGRAM' ) `
138         if [ "$test" = "" ] ; then listlib=$listlib" "$fili ; fi
139      done
140      for fili in `ls $diri/*.F90 $diri/*/*.F90` ; do
141         test=` (  head $fili | grep 'PROGRAM' ) `
142         if [ "$test" = "" ] ; then listlib=$listlib" "$fili ; fi 
143      done
144      echo
145      echo $listlib >> create_makeg_gcm.log
146      echo
147      echo "#=================================================================="
148      echo "# Contenu de la bibliotheque correspondant au Directory "$diri
149      echo "#=================================================================="
150      echo
151      for trufile in $listlib ; do
152         fili=`echo $trufile | awk -F/ ' { print $NF } ' | cut -d. -f1`
153         echo '$(LIBO)/lib'$diri".a : " '$(LIBO)/lib'$diri".a("$fili".o)"
154         echo
155      done
156      echo '.PRECIOUS   : $(LIBO)/lib'$diri'.a'
157      echo
158      echo
159      echo "# Compilation des membres de la bibliotheque lib"$diri".a"
160      echo
161      for trufile in $listlib ; do
162         fili=`echo $trufile | awk -F/ ' { print $NF } ' | cut -d. -f1`
163         F90=0 ; egrep -i '^ *use ' $trufile > /dev/null 2>&1 && F90=1
164                 egrep -i '^ *module ' $trufile > /dev/null 2>&1 && F90=1
165                 egrep -i '#include*.inc ' $trufile > /dev/null 2>&1 && F90=1
166         str1='$(LIBO)/lib'$diri'.a('$fili'.o) : $(LIBF)/'$trufile
167         [ "$fili" = "$diri/chem.subs" ] && str1=$str1' $(LIBF)/'$diri/chem.mods.F
168
169##########################################################################
170# TRAITEMENT DES DEPENDANCES
171# Differents cas de dependance correspondant a des include ou des
172# use module.
173# soit dans le repertoire local soit dans un autre.
174# Pour dyn3d, il faudrait remplacer la chaine de caractere par $DYN
175# ou quelque chose du genre.
176##########################################################################
177
178         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 } ' ) ` ; do
179            echo $trufile $fili $stri >> create_make_gcm.log
180            strj=`echo $stri | tr [A-Z] [a-z]`
181            str2=""
182            for dirinc in filtrez bibio grid dyn3d $diri $diri/*/ ; do
183# Recherche dans l'ordre hierarchique inverse car seule la derniere
184# ligne est conservee
185               if [ -f $dirinc/$stri ] ; then
186                  str2='$(LIBF)/'$dirinc/$stri
187               elif [ -f $dirinc/$strj ] ; then
188                  str2='$(LIBF)/'$dirinc/$stri
189               elif [ -f $dirinc/$strj.F90 ]  || [ -f $dirinc/$strj.F ]  ; then 
190                  strlib=`echo $dirinc | awk -F/ ' { print $1 } '`
191                  str2='$(LIBO)/lib'$strlib'.a('$strj'.o)'
192               fi
193            done
194            if [ "$str2" = "" ] ; then
195               echo Warn: Include $diri $trufile $fili $stri pas trouve >> $gcm/create_make_gcm.log
196            elif [ "$str2" = "$str1" ] ; then
197               echo Warn: Include $diri $trufile $fili $stri $str1 trouve 2x >> $gcm/create_make_gcm.log
198            else
199               echo $str1 \\
200               str1=$str2
201            fi
202         done # Fin de la boucle sur les dependances et ecriture de la derniere
203         echo $str1
204         # Compile in LIBO directory; and before compiling, remove
205         # object from library
206         echo ' cd $(LIBO); \'
207         echo ' $(AR) d $(LIBO)/lib'$diri'.a '$fili'.o ; \'
208         if [ "$F90" -eq '0' ] ; then
209         ## Fixed Form Fortran 77
210           echo '       $(COMPILE) $(LIBF)/'$trufile' ; \'
211         else
212         ## Fortran 90
213           if [ `echo $trufile | cut -d. -f2` = F90 ] ; then
214              ## Free Form
215              echo '    $(COMPTRU90) $(LIBF)/'$trufile' ; \'
216           else
217              echo '    $(COMPILE90) $(LIBF)/'$trufile' ; \'
218           fi
219         fi
220         # Put generated object in library
221         echo ' $(AR) r $(LIBO)/lib'$diri'.a '$fili'.o ; $(RM) '$fili'.o ; \'
222         echo
223      done
224#       
225      echo
226   cd $libf
227   fi
228   fi
229done
Note: See TracBrowser for help on using the repository browser.