/[MITgcm]/MITgcm/tools/genmake2
ViewVC logotype

Annotation of /MITgcm/tools/genmake2

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.25 - (hide annotations) (download)
Thu Oct 30 13:22:42 2003 UTC (20 years, 4 months ago) by edhill
Branch: MAIN
Changes since 1.24: +3 -2 lines
 o add platform detection for OSX ('darwin') on PPC ('Power Macintosh')
   hardware

1 edhill 1.1 #!/bin/bash
2     #
3 edhill 1.25 # $Header: /u/u3/gcmpack/MITgcm/tools/genmake2,v 1.24 2003/10/29 13:42:10 cnh Exp $
4 edhill 1.1 #
5     # Makefile generator for MITgcm UV codes
6     # created by cnh 03/98
7     # adapted by aja 06/98
8     # modified by aja 01/00
9     # rewritten in bash by eh3 08/03
10    
11 edhill 1.12 # Search for particular CPP #cmds associated with packages
12     # usage: test_for_package_in_cpp_options CPP_file package_name
13     test_for_package_in_cpp_options() {
14     cpp_options=$1
15     pkg=$2
16     grep -i "#define.*ALLOW_$pkg" $cpp_options > /dev/null 2>&1
17     RETVAL=$?
18     if test "x${RETVAL}" = x0 ; then
19     echo "Error: In $cpp_options there is an illegal line: #define ALLOW_$pkg"
20     exit 99
21     fi
22     grep -i "#undef.*ALLOW_$pkg" $cpp_options > /dev/null 2>&1
23     RETVAL=$?
24     if test "x${RETVAL}" = x0 ; then
25     echo "Error: In $cpp_options there is an illegal line: #undef ALLOW_$pkg"
26     exit 99
27     fi
28     grep -i "#define.*DISABLE_$pkg" $cpp_options > /dev/null 2>&1
29     RETVAL=$?
30     if test "x${RETVAL}" = x0 ; then
31     echo "Error: In $cpp_options there is an illegal line: #define DISABLE_$pkg"
32     exit 99
33     fi
34     grep -i "#undef.*DISABLE_$pkg" $cpp_options > /dev/null 2>&1
35     RETVAL=$?
36     if test "x${RETVAL}" = x0 ; then
37     echo "Error: In $cpp_options there is an illegal line: #undef DISABLE_$pkg"
38     exit 99
39     fi
40     }
41    
42     # Read the $ROOTDIR/pkg/pkg_groups file and expand any references to
43     # the package list.
44     expand_pkg_groups() {
45     new_packages=
46     PKG_GROUPS=$ROOTDIR"/pkg/pkg_groups"
47     if test -r $PKG_GROUPS ; then
48     cat $PKG_GROUPS | sed -e 's/#.*$//g' | sed -e 's/:/ : /g' > ./p1.tmp
49 edhill 1.15 cat ./p1.tmp | $AWK '(NF>2 && $2==":"){ print $0 }' > ./p2.tmp
50 edhill 1.12 matched=0
51     for i in $PACKAGES ; do
52     line=`grep "^ *$i" ./p2.tmp`
53     RETVAL=$?
54     if test "x$RETVAL" = x0 ; then
55     matched=1
56 edhill 1.15 replace=`echo $line | $AWK '{ $1=""; $2=""; print $0 }'`
57 edhill 1.12 echo " replacing \"$i\" with: $replace"
58     new_packages="$new_packages $replace"
59     else
60     new_packages="$new_packages $i"
61     fi
62     done
63     PACKAGES=$new_packages
64     rm -f ./p[1,2].tmp
65     else
66     echo "Warning: can't read package groups definition file: $PKG_GROUPS"
67     fi
68     }
69 edhill 1.1
70     # Guess possible config options for this host
71     find_possible_configs() {
72    
73 edhill 1.11 tmp1=`uname`"_"`uname -m`
74     tmp2=`echo $tmp1 | sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
75 edhill 1.25 tmp3=`echo $tmp2 | sed -e 's/power macintosh/ppc/'`
76     PLATFORM=`echo $tmp3 | sed -e 's/i[3-6]86/ia32/' | sed -e 's/athlon/ia32/'`
77 edhill 1.11 OFLIST=`(cd $ROOTDIR/tools/build_options; ls | grep "^$PLATFORM")`
78     echo " The platform appears to be: $PLATFORM"
79     # if test "x$OFLIST" = x ; then
80     # echo " No pre-defined options files were found matching this platform"
81     # echo " but examples for other platforms can be found in:"
82     # echo " $ROOTDIR/tools/build_options"
83     # else
84     # echo " Options files (located in $ROOTDIR/tools/build_options) that"
85     # echo " may work with this machine are:"
86     # for i in $OFLIST ; do
87     # echo " $i"
88     # done
89     # fi
90    
91 edhill 1.1 echo "test" > test
92     ln -s ./test link
93     RETVAL=$?
94     if test "x${RETVAL}" = x0 ; then
95 edhill 1.11 LN="ln -s"
96     else
97     echo "Error: \"ln -s\" does not appear to work on this system!"
98     echo " For help, please contact <MITgcm-support@mitgcm.org>."
99     exit 1
100 edhill 1.1 fi
101     rm -f test link
102    
103 edhill 1.11 if test "x$CPP" = x ; then
104     CPP="cpp -traditional -P"
105 edhill 1.1 fi
106    
107     # look for possible fortran compilers
108 cnh 1.24 tmp="$MITGCM_FC $FC efc g77 f77 pgf77 pgf95 ifc f90 f95 mpif77 mpf77 mpxlf95"
109 edhill 1.1 p_FC=
110 edhill 1.11 for c in $tmp ; do
111     rm -f ./hello.f ./hello
112     cat >> hello.f <<EOF
113     program hello
114     do i=1,3
115     print *, 'hello world : ', i
116     enddo
117     end
118     EOF
119     $c -o hello hello.f > /dev/null 2>&1
120 edhill 1.1 RETVAL=$?
121     if test "x${RETVAL}" = x0 ; then
122     p_FC="$p_FC $c"
123     fi
124     done
125 edhill 1.21 rm -f ./hello.f ./hello
126 edhill 1.1 if test "x${p_FC}" = x ; then
127 edhill 1.11 cat 1>&2 <<EOF
128    
129     Error: No Fortran compilers were found in your path. Please specify one using:
130    
131     1) an "optfile" on (eg. "-optfile=path/to/OPTFILE"),
132     2) a command-line option (eg. "-fc NAME"), or
133     3) the MITGCM_FC environment variable.
134    
135     EOF
136     exit 1
137 edhill 1.1 else
138 edhill 1.11 echo " The possible FORTRAN compilers found in your path are:"
139     echo " "$p_FC
140     if test "x$FC" = x ; then
141 edhill 1.15 FC=`echo $p_FC | $AWK '{print $1}'`
142 edhill 1.11 fi
143 edhill 1.1 fi
144    
145 edhill 1.11 for i in $p_FC ; do
146     p_OF=$ROOTDIR"/tools/build_options/"$PLATFORM"_"$i
147     if test -r $p_OF ; then
148     OPTFILE=$p_OF
149     echo " The options file: $p_OF"
150     echo " appears to match so we'll use it."
151     break
152     fi
153     done
154     if test "x$OPTFILE" = x ; then
155     cat 1>&2 <<EOF
156    
157     Error: No options file was found in: $ROOTDIR/tools/build_options/
158     that matches this platform ("$PLATFORM") and the compilers found in
159     your path. Please specify an "optfile" using:
160    
161     1) the command line (eg. "-optfile=path/to/OPTFILE"), or
162     2) the MITGCM_OF environment variable.
163    
164     If you need help, please contact the developers at <MITgcm-support@mitgcm.org>.
165    
166 edhill 1.1 EOF
167 edhill 1.11 exit 1
168 edhill 1.1 fi
169 edhill 1.11
170     # # look for possible MPI libraries
171     # mpi_libs=
172     # mpi_fort=`which mpif77 2>/dev/null`
173     # RETVAL=$?
174     # if test "x${RETVAL}" = x0 ; then
175     # cat >>test.f <<EOF
176     # PROGRAM HELLO
177     # DO 10, I=1,10
178     # PRINT *,'Hello World'
179     # 10 CONTINUE
180     # STOP
181     # END
182     # EOF
183     # eval "$mpi_fort -showme test.f > out"
184     # RETVAL=$?
185     # if test "x${RETVAL}" = x0 ; then
186     # a=`cat out`
187     # for i in $a ; do
188     # case $i in
189     # -*)
190     # mpi_libs="$mpi_libs $i" ;;
191     # esac
192     # done
193     # echo "The MPI libs appear to be:"
194     # echo " "$mpi_libs
195     # fi
196     # rm -f test.f out
197     # fi
198 edhill 1.1
199     }
200    
201     # Parse the package dependency information
202     get_pdepend_list() {
203    
204     # strip the comments and then convert the dependency file into
205     # two arrays: PNAME, DNAME
206     cat $1 | sed -e 's/#.*$//g' \
207 edhill 1.15 | $AWK 'BEGIN{nn=0;} (NF>0){ for(i=2;i<=NF;i++){nn++; print "PNAME["nn"]="$1"\nDNAME["nn"]="$i} }' \
208 edhill 1.1 > ./.pd_tmp
209     source ./.pd_tmp
210     rm -f ./.pd_tmp
211    
212     echo -n "PNAME = "${}
213     }
214    
215    
216     # Explain usage
217     usage() {
218 edhill 1.2 echo
219 edhill 1.1 echo "Usage: "$0" [OPTIONS]"
220 edhill 1.2 echo " where [OPTIONS] can be:"
221     echo
222 edhill 1.1 echo " -help | --help | -h | --h"
223     echo " -nooptfile | --nooptfile"
224     echo " -optfile NAME | --optfile NAME | -of NAME | --of NAME"
225     echo " -optfile=NAME | --optfile=NAME | -of=NAME | --of=NAME"
226     echo " -pdepend NAME | --pdepend NAME"
227     echo " -pdepend=NAME | --pdepend=NAME"
228     echo " -pdefault NAME | --pdefault NAME"
229     echo " -pdefault=NAME | --pdefault=NAME"
230 edhill 1.6 echo " -make NAME | -m NAME"
231     echo " --make=NAME | -m=NAME"
232     echo " -makefile NAME | -mf NAME"
233     echo " --makefile=NAME | -mf=NAME"
234 edhill 1.1 echo " -platform NAME | --platform NAME | -pl NAME | --pl NAME"
235     echo " -platform=NAME | --platform=NAME | -pl=NAME | --pl=NAME"
236     echo " -rootdir NAME | --rootdir NAME | -rd NAME | --rd NAME"
237     echo " -rootdir=NAME | --rootdir=NAME | -rd=NAME | --rd=NAME"
238     echo " -mods NAME | --mods NAME | -mo NAME | --mo NAME"
239     echo " -mods=NAME | --mods=NAME | -mo=NAME | --mo=NAME"
240     echo " -disable NAME | --disable NAME"
241     echo " -disable=NAME | --disable=NAME"
242     echo " -enable NAME | --enable NAME"
243     echo " -enable=NAME | --enable=NAME"
244 edhill 1.12 echo " -standarddirs NAME | --standarddirs NAME"
245     echo " -standarddirs=NAME | --standarddirs=NAME"
246 edhill 1.1 echo " -noopt NAME | --noopt NAME"
247     echo " -noopt=NAME | --noopt=NAME"
248     # echo " -cpp NAME | --cpp NAME"
249     # echo " -cpp=NAME | --cpp=NAME"
250     echo " -fortran NAME | --fortran NAME | -fc NAME | --fc NAME"
251     echo " -fc=NAME | --fc=NAME"
252     echo " -[no]ieee | --[no]ieee"
253     echo " -[no]mpi | --[no]mpi"
254 edhill 1.2 echo " -[no]jam | --[no]jam"
255     echo
256     echo " and NAME is a string such as:"
257     echo
258 edhill 1.1 echo " --enable pkg1 --enable 'pkg1 pkg2' --enable 'pkg1 pkg2 pkg3'"
259     echo " -mods=dir1 -mods='dir1' -mods='dir1 dir2 dir3'"
260 edhill 1.2 echo " -foptim='-Mvect=cachesize:512000,transform -xtypemap=real:64,double:64,integer:32'"
261     echo
262 edhill 1.1 echo " which, depending upon your shell, may need to be single-quoted"
263     echo " if it contains spaces, dashes, or other special characters."
264     exit 1
265     }
266    
267     #eh3 # This is the generic configuration.
268     #eh3 set LN = ( 'ln -s' )
269     #eh3 set CPP = ( '/lib/cpp -P' )
270     #eh3 set S64 = ( '$(TOOLSDIR)/set64bitConst.sh' )
271     #eh3 set KPP = ( )
272     #eh3 set FC = ( 'f77' )
273     #eh3 set LINK = $FC
274     #eh3 set MAKEDEPEND = ( 'makedepend' )
275     #eh3 set INCLUDES = ( -I. )
276     #eh3 set FFLAGS = ( )
277     #eh3 set FOPTIM = ( )
278     #eh3 set CFLAGS = ( )
279     #eh3 set KFLAGS1 = ( )
280     #eh3 set KFLAGS2 = ( )
281     #eh3 set LIBS = ( )
282     #eh3 set KPPFILES = ( )
283     #eh3 if (! $?NOOPTFILES ) set NOOPTFILES = ( )
284     #eh3 if (! $?NOOPTFLAGS ) set NOOPTFLAGS = ( )
285    
286     # Set defaults here
287 edhill 1.5 COMMANDL="$0 $@"
288    
289 edhill 1.1 PLATFORM=
290     LN=
291     S64=
292     KPP=
293     FC=
294     LINK=
295 edhill 1.11 DEFINES="-DWORDLENGTH=4"
296 edhill 1.1 PACKAGES=
297     ENABLE=
298     DISABLE=
299     MAKEFILE=
300     MAKEDEPEND=
301     PDEPEND=
302 edhill 1.11 DUMPSTATE=t
303 edhill 1.1 PDEFAULT=
304     OPTFILE=
305 edhill 1.2 INCLUDES="-I."
306 edhill 1.1 FFLAGS=
307     FOPTIM=
308     CFLAGS=
309     KFLAGS1=
310     KFLAGS2=
311     LIBS=
312     KPPFILES=
313     NOOPTFILES=
314     NOOPTFLAGS=
315    
316     MODS=
317     TOOLSDIR=
318     SOURCEDIRS=
319     INCLUDEDIRS=
320 edhill 1.12 STANDARDDIRS=
321 edhill 1.1
322     PWD=`pwd`
323     MAKE=make
324 edhill 1.15 AWK=awk
325 edhill 1.1 THISHOSTNAME=`hostname`
326     THISCWD=`pwd`
327     THISDATE=`date`
328     MACHINE=`uname -a`
329 edhill 1.7 EXECUTABLE=
330     EXEHOOK=
331     EXEDIR=
332 edhill 1.12 PACKAGES_CONF=
333     IEEE=
334     if test "x$MITGCM_IEEE" != x ; then
335     IEEE=$MITGCM_IEEE
336     fi
337 edhill 1.1
338 edhill 1.14 AUTODIFF_PKG_USED=f
339     AD_OPTFILE=
340 edhill 1.17 TAF=
341     AD_TAF_FLAGS=
342     FTL_TAF_FLAGS=
343     SVD_TAF_FLAGS=
344     TAF_EXTRA=
345     TAMC=
346     AD_TAMC_FLAGS=
347     FTL_TAF_FLAGS=
348     SVD_TAMC_FLAGS=
349     TAMC_EXTRA=
350    
351 edhill 1.14
352 edhill 1.5 # The following state can be set directly by command-line switches
353     gm_s1="OPTFILE PDEPEND PDEFAULT MAKEFILE PLATFORM ROOTDIR MODS DISABLE ENABLE NOOPT"
354 edhill 1.12 gm_s2="FC IEEE MPI JAM DUMPSTATE STANDARDDIRS"
355 edhill 1.5
356     # The following state is not directly set by command-line switches
357     gm_s3="LN S64 KPP LINK PACKAGES MAKEDEPEND PDEPEND PDEFAULT INCLUDES FFLAGS FOPTIM "
358     gm_s4="CFLAGS KFLAGS1 KFLAGS2 LIBS KPPFILES NOOPTFILES NOOPTFLAGS"
359     gm_s5="TOOLSDIR SOURCEDIRS INCLUDEDIRS PWD MAKE THISHOSTNAME THISDATE MACHINE"
360 edhill 1.12 gm_s6="EXECUTABLE EXEHOOK EXEDIR PACKAGES_CONF"
361 edhill 1.5
362 edhill 1.14 # The following are all related to adjoint/tangent-linear stuff
363 edhill 1.17 gm_s7="AUTODIFF_PKG_USED AD_OPTFILE TAMC TAF AD_TAMC_FLAGS AD_TAF_FLAGS"
364 edhill 1.14 gm_s8="FTL_TAMC_FLAGS FTL_TAF_FLAGS SVD_TAMC_FLAGS SVD_TAF_FLAGS"
365 edhill 1.17 gm_s9="TAF_EXTRA TAMC_EXTRA"
366 edhill 1.14
367 edhill 1.17 gm_state="COMMANDL $gm_s1 $gm_s2 $gm_s3 $gm_s4 $gm_s5 $gm_s6 $gm_s7 $gm_s8 $gm_s9"
368 edhill 1.5
369    
370 edhill 1.2 echo
371     echo "=== Processing options files and arguments ==="
372 edhill 1.12 gm_local="genmake_local"
373     for i in . $MODS ; do
374     if test -r $i/$gm_local ; then
375     source $i/$gm_local
376     break
377     fi
378     done
379 edhill 1.1 echo -n " getting local config information: "
380     if test -e $gm_local ; then
381     echo "using $gm_local"
382     source $gm_local
383 edhill 1.2 # echo "DISABLE=$DISABLE"
384     # echo "ENABLE=$ENABLE"
385 edhill 1.1 else
386     echo "none found"
387     fi
388    
389     # echo "$0::$1:$2:$3:$4:$5:$6:$7:"
390 edhill 1.2 #OPTIONS=
391     #n=0
392     #for i ; do
393     # echo "$i $n"
394     # setvar="OPTIONS[$n]='$i'"
395     # # echo " $setvar"
396     # eval "$setvar"
397     # n=$(( $n + 1 ))
398     #done
399     #parse_options
400     ac_prev=
401     for ac_option ; do
402    
403     # If the previous option needs an argument, assign it.
404     if test -n "$ac_prev"; then
405     eval "$ac_prev=\$ac_option"
406     ac_prev=
407     continue
408     fi
409    
410     ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
411    
412     case $ac_option in
413    
414     -help | --help | -h | --h)
415     usage ;;
416    
417     -nooptfile | --nooptfile)
418     OPTFILE="NONE" ;;
419     -optfile | --optfile | -of | --of)
420 edhill 1.4 ac_prev=OPTFILE ;;
421 edhill 1.2 -optfile=* | --optfile=* | -of=* | --of=*)
422     OPTFILE=$ac_optarg ;;
423    
424 edhill 1.14 -adoptfile | --adoptfile | -ad | --ad)
425     ac_prev=AD_OPTFILE ;;
426     -adoptfile=* | --adoptfile=* | -adof=* | --adof=*)
427     AD_OPTFILE=$ac_optarg ;;
428    
429 edhill 1.2 -pdepend | --pdepend)
430 edhill 1.4 ac_prev=PDEPEND ;;
431 edhill 1.2 -pdepend=* | --pdepend=*)
432     PDEPEND=$ac_optarg ;;
433    
434     -pdefault | --pdefault)
435 edhill 1.4 ac_prev=PDEFAULT ;;
436 edhill 1.2 -pdefault=* | --pdefault=*)
437     PDEFAULT=$ac_optarg ;;
438    
439 edhill 1.6 -make | --make | -m | --m)
440     ac_prev=MAKE ;;
441     -make=* | --make=* | -m=* | --m=*)
442     MAKE=$ac_optarg ;;
443    
444     -makefile | --makefile | -ma | --ma)
445 edhill 1.4 ac_prev=MAKEFILE ;;
446 edhill 1.6 -makefile=* | --makefile=* | -ma=* | --ma=*)
447 edhill 1.2 MAKEFILE=$ac_optarg ;;
448    
449     -platform | --platform | -pl | --pl)
450 edhill 1.4 ac_prev=PLATFORM ;;
451 edhill 1.2 -platform=* | --platform=* | -pl=* | --pl=*)
452     PLATFORM=$ac_optarg ;;
453    
454     -rootdir | --rootdir | -rd | --rd)
455 edhill 1.4 ac_prev=ROOTDIR ;;
456 edhill 1.2 -rootdir=* | --rootdir=* | -rd=* | --rd=*)
457     ROOTDIR=$ac_optarg ;;
458    
459     -mods | --mods | -mo | --mo)
460 edhill 1.4 ac_prev=MODS ;;
461 edhill 1.2 -mods=* | --mods=* | -mo=* | --mo=*)
462     MODS=$ac_optarg ;;
463    
464     -disable | --disable)
465 edhill 1.4 ac_prev=DISABLE ;;
466 edhill 1.2 -disable=* | --disable=*)
467     DISABLE=$ac_optarg ;;
468    
469     -enable | --enable)
470 edhill 1.4 ac_prev=ENABLE ;;
471 edhill 1.2 -enable=* | --enable=*)
472     ENABLE=$ac_optarg ;;
473    
474 edhill 1.12 -standarddirs | --standarddirs)
475     ac_prev=STANDARDDIRS ;;
476     -standarddirs=* | --standarddirs=*)
477     STANDARDDIRS=$ac_optarg ;;
478    
479 edhill 1.2 -noopt | --noopt)
480 edhill 1.4 ac_prev=NOOPT ;;
481 edhill 1.2 -noopt=* | --noopt=*)
482     NOOPT=$ac_optarg ;;
483    
484     # -cpp | --cpp)
485     # ac_prev=cpp ;;
486     # -cpp=* | --cpp=*)
487     # CPP=$ac_optarg ;;
488    
489     -fortran | --fortran | -fc | --fc)
490 edhill 1.4 ac_prev=FC ;;
491 edhill 1.2 -fc=* | --fc=*)
492     FC=$ac_optarg ;;
493    
494     -ieee | --ieee)
495 edhill 1.12 IEEE=true ;;
496 edhill 1.2 -noieee | --noieee)
497 edhill 1.12 IEEE= ;;
498 edhill 1.2
499     -mpi | --mpi)
500 edhill 1.12 MPI=true ;;
501 edhill 1.2 -nompi | --nompi)
502 edhill 1.12 MPI= ;;
503 edhill 1.2
504     -jam | --jam)
505     JAM=1 ;;
506     -nojam | --nojam)
507     JAM=0 ;;
508    
509 edhill 1.5 -ds | --ds)
510     DUMPSTATE=t ;;
511    
512 edhill 1.17 -taf_extra | --taf_extra)
513     ac_prev=TAF_EXTRA ;;
514     -taf_extra=* | --taf_extra=*)
515     TAF_EXTRA=$ac_optarg ;;
516    
517     -tamc_extra | --tamc_extra)
518     ac_prev=TAMC_EXTRA ;;
519     -tamc_extra=* | --tamc_extra=*)
520     TAMC_EXTRA=$ac_optarg ;;
521    
522 edhill 1.2 -*)
523     echo "Error: unrecognized option: "$ac_option
524     usage
525     ;;
526    
527     *)
528     echo "Error: unrecognized argument: "$ac_option
529     usage
530     ;;
531    
532     esac
533    
534 edhill 1.1 done
535    
536 edhill 1.12 if test -f ./.genmakerc ; then
537     echo
538     echo "WARNING: genmake2 has detected a copy of the old-style \"./.genmakerc\""
539     echo " file. This file format is no longer supported. Please see:"
540     echo
541     echo " http://mitgcm.org/devel_HOWTO/"
542     echo
543     echo " for directions on how to setup and use the new \"genmake2\" input"
544     echo " files and send an email to MITgcm-support@mitgcm.org if you want help."
545     echo
546     fi
547    
548 edhill 1.11 if test "x${ROOTDIR}" = x ; then
549     if test "${PWD##/*/}" = "bin" -a -d ../model -a -d ../eesup -a -d ../pkg ; then
550     ROOTDIR=".."
551     else
552     for d in . .. ../.. ../../.. ../../../.. ../../../../.. ; do
553     if [ -d "$d/model" -a -d "$d/eesupp" -a -d "$d/pkg" ]; then
554     ROOTDIR=$d
555     echo -n "Warning: ROOTDIR was not specified but there appears to be"
556     echo " a copy of MITgcm at \"$ROOTDIR\" so we'll try it."
557     break
558     fi
559     done
560     fi
561     fi
562     if test "x${ROOTDIR}" = x ; then
563     echo "Error: Cannot determine ROOTDIR for MITgcm code."
564     echo " Please specify a ROOTDIR using either an options "
565     echo " file or a command-line option."
566     exit 1
567     fi
568     if test ! -d ${ROOTDIR} ; then
569     echo "Error: the specified ROOTDIR (\"$ROOTDIR\") does not exist!"
570     exit 1
571     fi
572    
573 edhill 1.1 echo " getting OPTFILE information: "
574     if test "x${OPTFILE}" = x ; then
575 edhill 1.11 if test "x$MITGCM_OF" = x ; then
576     echo "Warning: no OPTFILE specified so we'll look for possible settings"
577     printf "\n=== Searching for possible settings for OPTFILE ===\n"
578     find_possible_configs
579 edhill 1.1 else
580 edhill 1.11 OPTFILE=$MITGCM_OF
581     fi
582     fi
583     if test "x$OPTFILE" != xNONE ; then
584     if test -f "$OPTFILE" -a -r "$OPTFILE" ; then
585     echo " using OPTFILE=\"$OPTFILE\""
586     source "$OPTFILE"
587     RETVAL=$?
588     if test "x$RETVAL" != x0 ; then
589     echo -n "Error: failed to source OPTFILE \"$OPTFILE\""
590     echo "--please check that variable syntax is bash-compatible"
591 edhill 1.1 exit 1
592     fi
593 edhill 1.11 if test "x$DUMPSTATE" != xf ; then
594 edhill 1.12 cp -f $OPTFILE "genmake_optfile"
595 edhill 1.11 fi
596     else
597     echo "Error: can't read OPTFILE=\"$OPTFILE\""
598     exit 1
599 edhill 1.1 fi
600     fi
601 edhill 1.8
602 edhill 1.14 echo " getting AD_OPTFILE information: "
603     if test "x${AD_OPTFILE}" = x ; then
604     if test "x$MITGCM_AD_OF" = x ; then
605     AD_OPTFILE=$ROOTDIR/tools/adjoint_options/adjoint_default
606     else
607     AD_OPTFILE=$MITGCM_AD_OF
608     fi
609     fi
610     if test "x${AD_OPTFILE}" != xNONE ; then
611     if test -f "$AD_OPTFILE" -a -r "$AD_OPTFILE" ; then
612     echo " using AD_OPTFILE=\"$AD_OPTFILE\""
613     source "$AD_OPTFILE"
614     RETVAL=$?
615     if test "x$RETVAL" != x0 ; then
616     echo -n "Error: failed to source AD_OPTFILE \"$AD_OPTFILE\""
617     echo "--please check that variable syntax is bash-compatible"
618     exit 1
619     fi
620     if test "x$DUMPSTATE" != xf ; then
621     cp -f $AD_OPTFILE "genmake_ad_optfile"
622     fi
623     else
624     echo "Error: can't read AD_OPTFILE=\"$AD_OPTFILE\""
625     exit 1
626     fi
627     fi
628    
629 edhill 1.8 # Check that FC, LINK, CPP, and S64 are defined. If not, complain
630     # and abort!
631     if test "x$FC" = x ; then
632     cat <<EOF 1>&2
633    
634     Error: no Fortran compiler: please specify using one of the following:
635     1) within the options file ("FC=...") as specified by "-of=OPTFILE"
636     2) the "-fc=XXX" command-line option
637 edhill 1.12 3) the "./genmake_local" file
638 edhill 1.8 EOF
639     exit 1
640     fi
641     if test "x$LINK" = x ; then
642     LINK=$FC
643     fi
644     if test "x$CPP" = x ; then
645 edhill 1.11 CPP="cpp"
646     fi
647 edhill 1.13 echo "#define A a" | $CPP > test_cpp 2>&1
648 edhill 1.11 RETVAL=$?
649     if test "x$RETVAL" != x0 ; then
650 edhill 1.8 cat <<EOF 1>&2
651    
652 edhill 1.11 Error: C pre-processor "$CPP" failed the test case: please specify using:
653    
654 edhill 1.8 1) within the options file ("CPP=...") as specified by "-of=OPTFILE"
655 edhill 1.12 2) the "./genmake_local" file
656 edhill 1.11
657 edhill 1.8 EOF
658     exit 1
659 edhill 1.11 else
660     rm -f test_cpp
661 edhill 1.8 fi
662 edhill 1.11 if test "x$MAKEDEPEND" = x ; then
663     MAKEDEPEND=makedepend
664 edhill 1.8 fi
665    
666 edhill 1.2 printf "\n=== Setting defaults ===\n"
667 edhill 1.1 echo -n " Adding MODS directories: "
668     for d in $MODS ; do
669     if test ! -d $d ; then
670 edhill 1.2 echo
671     echo "Error: MODS directory \"$d\" not found!"
672 edhill 1.1 exit 1
673     else
674     echo -n " $d"
675     SOURCEDIRS="$SOURCEDIRS $d"
676     INCLUDEDIRS="$INCLUDEDIRS $d"
677     fi
678     done
679     echo
680    
681     if test "x$MAKEFILE" = x ; then
682     MAKEFILE="Makefile"
683     fi
684     if test "x${PLATFORM}" = x ; then
685     PLATFORM=$p_PLATFORM
686     fi
687    
688     if test "x${EXEDIR}" = x ; then
689     if test "${PWD##/*/}" = "bin" -a -d ../exe -a $ROOTDIR = .. ; then
690     EXEDIR=../exe
691     else
692     EXEDIR=.
693     fi
694     fi
695     if test ! -d ${EXEDIR} ; then
696     echo "Error: the specified EXEDIR (\"$EXEDIR\") does not exist!"
697     exit 1
698     fi
699    
700     if test "x${TOOLSDIR}" = x ; then
701     TOOLSDIR="$ROOTDIR/tools"
702     fi
703     if test ! -d ${TOOLSDIR} ; then
704     echo "Error: the specified $TOOLSDIR (\"$TOOLSDIR\") does not exist!"
705     exit 1
706     fi
707 edhill 1.11 if test "x$S64" = x ; then
708     S64='$(TOOLSDIR)/set64bitConst.sh'
709     fi
710 edhill 1.1
711     EXECUTABLE=${EXECUTABLE:-mitgcmuv}
712    
713     # We have a special set of source files in eesupp/src which are
714     # generated from some template source files. We'll make them first so
715     # they appear as regular source code
716     if test -r $ROOTDIR"/eesupp/src/Makefile" ; then
717     echo " Making source files in eesupp from templates"
718     $MAKE -C $ROOTDIR"/eesupp/src/" > make_eesupp.errors 2>&1
719     RETVAL=$?
720 edhill 1.2 if test "x${RETVAL}" = x0 ; then
721 edhill 1.1 rm -f make_eesupp.errors
722     else
723     echo "Error: problem encountered while building source files in eesupp:"
724     cat make_eesupp.errors
725     exit 1
726     fi
727     fi
728    
729 edhill 1.2 printf "\n=== Determining package settings ===\n"
730 edhill 1.1 if test "x${PDEPEND}" = x ; then
731     tmp=$ROOTDIR"/pkg/pkg_depend"
732     if test -r $tmp ; then
733     PDEPEND=$tmp
734     else
735     echo "Warning: No package dependency information was specified."
736     echo " Please check that ROOTDIR/pkg/pkg_depend exists."
737     fi
738     else
739     if test ! -r ${PDEPEND} ; then
740     echo "Error: can't read package dependency info from PDEPEND=\"$PDEPEND\""
741     exit 1
742     fi
743     fi
744     echo " getting package dependency info from $PDEPEND"
745     # Strip the comments and then convert the dependency file into
746     # two arrays: PNAME, DNAME
747     cat $PDEPEND | sed -e 's/#.*$//g' \
748 edhill 1.15 | $AWK 'BEGIN{nn=-1;} (NF>0){ for(i=2;i<=NF;i++){nn++; print "PNAME_"nn"="$1"\nDNAME_"nn"="$i}} END{print "nname="nn}' \
749 edhill 1.1 > ./.pd_tmp
750     RETVAL=$?
751     if test ! "x${RETVAL}" = x0 ; then
752     echo "Error: unable to parse package dependencies -- please check PDEPEND=\"$PDEPEND\""
753     exit 1
754     fi
755     source ./.pd_tmp
756     rm -f ./.pd_tmp
757    
758 edhill 1.12 # Search for default packages. Note that a "$ROOTDIR/pkg/pkg_groups"
759     # file should eventually be added so that, for convenience, one can
760     # specify groups of packages using names like "ocean" and "atmosphere".
761 edhill 1.1 echo -n " checking default package list: "
762     if test "x${PDEFAULT}" = x ; then
763 edhill 1.12 for i in "." $MODS ; do
764     if test -r $i"/packages.conf" ; then
765     PDEFAULT=$i"/packages.conf"
766     break
767     fi
768     done
769     fi
770     if test "x${PDEFAULT}" = x ; then
771 edhill 1.1 PDEFAULT="$ROOTDIR/pkg/pkg_default"
772     fi
773     if test "x${PDEFAULT}" = xNONE ; then
774     echo "default packages file disabled"
775     else
776     if test ! -r $PDEFAULT ; then
777     echo ""
778     echo "Warning: can't read default packages from PDEFAULT=\"$PDEFAULT\""
779     else
780     echo " using PDEFAULT=\"$PDEFAULT\""
781     # Strip the comments and add all the names
782 edhill 1.15 def=`cat $PDEFAULT | sed -e 's/#.*$//g' | $AWK '(NF>0){print $0}'`
783 edhill 1.1 RETVAL=$?
784     if test "x${RETVAL}" != x0 ; then
785     echo -n "Error: can't parse default package list "
786     echo "-- please check PDEFAULT=\"$PDEFAULT\""
787     exit 1
788     fi
789     for i in $def ; do
790     PACKAGES="$PACKAGES $i"
791     done
792 edhill 1.12 echo " before group expansion packages are: $PACKAGES"
793     expand_pkg_groups
794     echo " after group expansion packages are: $PACKAGES"
795 edhill 1.1 fi
796     fi
797    
798     echo " applying DISABLE settings"
799     pack=
800     for p in $PACKAGES ; do
801     addit="t"
802     for d in $DISABLE ; do
803     if test "x$p" = "x$d" ; then
804     addit="f"
805     fi
806     done
807     if test "x$addit" = xt ; then
808     pack="$pack $p"
809     fi
810     done
811     PACKAGES="$pack"
812     echo " applying ENABLE settings"
813 edhill 1.12 echo "" > ./.tmp_pack
814 edhill 1.1 PACKAGES="$PACKAGES $ENABLE"
815     for i in $PACKAGES ; do
816     if test ! -d "$ROOTDIR/pkg/$i" ; then
817     echo "Error: can't find package $i at \"$ROOTDIR/pkg/$i\""
818     exit 1
819     fi
820     echo $i >> ./.tmp_pack
821     done
822     pack=`cat ./.tmp_pack | sort | uniq`
823     rm -f ./.tmp_pack
824     PACKAGES=
825     for i in $pack ; do
826     PACKAGES="$PACKAGES $i"
827     done
828     echo " packages are: $PACKAGES"
829    
830     echo " applying package dependency rules"
831     ck=
832     while test "x$ck" != xtt ; do
833     i=0
834 edhill 1.2 # rtot=${#PNAME[@]}
835     rtot=$nname
836 edhill 1.1 while test $i -lt $rtot ; do
837    
838     # Is $pname in the current $PACKAGES list?
839 edhill 1.2 # pname=${PNAME[$i]}
840     tmp="pname=\"\$PNAME_$i\""
841     eval $tmp
842 edhill 1.1 pin="f"
843     for p in $PACKAGES ; do
844     if test "x$p" = "x$pname" ; then
845     pin="t"
846     fi
847     done
848    
849     # Is the DNAME entry a (+) or (-) rule ?
850 edhill 1.2 tmp="dname=\"\$DNAME_$i\""
851     eval $tmp
852 edhill 1.1 plus="-"
853 edhill 1.2 echo $dname | grep '^+' > /dev/null 2>&1
854 edhill 1.1 RETVAL=$?
855     if test "x$RETVAL" = x0 ; then
856     plus="+"
857     fi
858    
859     # Is $dname in the current $PACKAGES list?
860 edhill 1.2 dname=`echo $dname | sed -e 's/^[+-]//'`
861 edhill 1.1 din="f"
862     for p in $PACKAGES ; do
863     if test "x$p" = "x$dname" ; then
864     din="t"
865     fi
866     done
867    
868     # Do we need to add $dname according to the dependency rules?
869     if test "x$pin" = xt -a "x$plus" = "x+" -a "x$din" = xf ; then
870     in_dis="f"
871     for dis in $DISABLE ; do
872     if test "x$dis" = "x$dname" ; then
873     in_dis="t"
874     fi
875     done
876     if test "x$in_dis" = xt ; then
877     echo "Error: can't satisfy package dependencies:"
878     echo " \"$dname\" is required by the dependency rules"
879     echo " but is disallowed by the DISABLE settings"
880     exit 1
881     else
882     PACKAGES="$PACKAGES $dname"
883     ck=
884     fi
885     fi
886    
887     # Do we need to get rid of $dname according to the dependency rules?
888     if test "x$pin" = xt -a "x$plus" = "x-" -a "x$din" = xt; then
889     echo "Error: can't satisfy package dependencies:"
890     echo " \"$pname\" was requested but is disallowed by"
891     echo " the dependency rules for \"$dname\""
892     exit 1
893     fi
894     i=$(( $i + 1 ))
895     done
896     ck=$ck"t"
897     done
898     echo " packages are: $PACKAGES"
899     for i in $PACKAGES ; do
900     adr="$ROOTDIR/pkg/$i"
901     if test -d $adr ; then
902     SOURCEDIRS="$SOURCEDIRS $adr"
903     INCLUDEDIRS="$INCLUDEDIRS $adr"
904 edhill 1.14 if test "x$i" = xautodiff ; then
905     AUTODIFF_PKG_USED=t
906     fi
907 edhill 1.1 else
908     echo "Error: the directory \"$adr\" for package $i doesn't exist"
909     exit 1
910     fi
911     done
912    
913     # This is compatible with the old genmake. The "DISABLE_*" flags
914     # need to be replaced by the "ALLOW_*" flags set below.
915     #
916     # echo -n " Setting package-specific CPP flags: "
917     # pkrm=( mom_fluxform mom_vecinv generic_advdiff )
918     # pkrmdef=( -DDISABLE_MOM_FLUXFORM -DDISABLE_MOM_VECINV -DDISABLE_GENERIC_ADVDIFF -DDISABLE_DEBUGMODE )
919     # echo -n " "
920     # i=0
921     # while test $i -lt "${#pkrm[@]}" ; do
922     # echo "$PACKAGES" | grep "${pk[$i]}" > /dev/null 2>&1
923     # RETVAL=$?
924     # if test "x$RETVAL" = x1 ; then
925     # DEFINES="$DEFINES ${pkdef[$i]}"
926     # echo -n " ${pkdef[$i]}"
927     # fi
928     # i=$(( $i + 1 ))
929     # done
930     # echo
931    
932 edhill 1.12 # Create a list of #define and #undef to enable/disable packages
933     PACKAGES_DOT_H=PACKAGES_CONFIG.h
934     cat <<EOF >$PACKAGES_DOT_H".tmp"
935 edhill 1.1 C=== GENMAKE v2 ===
936 edhill 1.11 C The following defines have been set by GENMAKE, so please do not
937     C edit anything below these comments. In general, you should
938 edhill 1.1 C add or remove packages by re-running genmake with different
939     C "-enable" and/or "-disable" options.
940    
941 edhill 1.12 #ifndef PACKAGES_H
942     #define PACKAGES_H
943    
944 edhill 1.1 C Packages disabled by genmake:
945     EOF
946     # The following UGLY HACK sets multiple "#undef"s and it needs to go
947     # away. On 2003-08-12, CNH, JMC, and EH3 agreed that the CPP_OPTIONS.h
948     # file would eventually be split up so that all package-related #define
949     # statements could be separated and handled only by genmake.
950     names=`ls -1 "$ROOTDIR/pkg"`
951     all_pack=
952     for n in $names ; do
953     if test -d "$ROOTDIR/pkg/$n" -a "x$n" != xCVS ; then
954     has_pack="f"
955     for pack in $PACKAGES ; do
956     if test "x$pack" = "x$n" ; then
957     has_pack="t"
958     break
959     fi
960     done
961     if test "x$has_pack" = xf ; then
962 edhill 1.15 undef=`echo "ALLOW_$n" | $AWK '{print toupper($0)}'`
963 edhill 1.12 echo "#undef $undef" >> $PACKAGES_DOT_H".tmp"
964     # DEFINES="$DEFINES -U$undef"
965 edhill 1.1
966     #EH3 WARNING : This is an UGLY HACK that needs to be removed!!!
967     case $n in
968     mom_fluxform)
969     DEFINES="$DEFINES -DDISABLE_MOM_FLUXFORM"
970     ;;
971     mom_vecinv)
972     DEFINES="$DEFINES -DDISABLE_MOM_VECINV"
973     ;;
974     debug)
975     DEFINES="$DEFINES -DDISABLE_DEBUGMODE"
976     ;;
977     esac
978     #EH3 WARNING : This is an UGLY HACK that needs to be removed!!!
979    
980     fi
981     fi
982     done
983 edhill 1.12 cat <<EOF >>$PACKAGES_DOT_H".tmp"
984 edhill 1.1
985     C Packages enabled by genmake:
986     EOF
987     for i in $PACKAGES ; do
988 edhill 1.15 def=`echo "ALLOW_$i" | $AWK '{print toupper($0)}'`
989 edhill 1.12 echo "#define $def" >> $PACKAGES_DOT_H".tmp"
990     #eh3 DEFINES="$DEFINES -D$def"
991 edhill 1.1
992     #EH3 WARNING : This is an UGLY HACK that needs to be removed!!!
993     case $i in
994     aim_v23)
995 edhill 1.12 echo "#define ALLOW_AIM" >> $PACKAGES_DOT_H".tmp"
996     DEFINES="$DEFINES -DALLOW_AIM"
997     echo "Warning: ALLOW_AIM is set to enable aim_v23. This is REALLY ugly Jean-Michel :-)"
998 edhill 1.1 ;;
999     esac
1000     #EH3 WARNING : This is an UGLY HACK that needs to be removed!!!
1001    
1002     done
1003 edhill 1.12 cat <<EOF >>$PACKAGES_DOT_H".tmp"
1004    
1005     #endif /* PACKAGES_H */
1006     EOF
1007    
1008     if test ! -f $PACKAGES_DOT_H ; then
1009     mv -f $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H
1010     else
1011     cmp $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H
1012     RETVAL=$?
1013     if test "x$RETVAL" = x0 ; then
1014     rm -f $PACKAGES_DOT_H".tmp"
1015     else
1016     mv -f $PACKAGES_DOT_H $PACKAGES_DOT_H".bak"
1017     mv -f $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H
1018     fi
1019     fi
1020 edhill 1.1
1021     echo " Adding STANDARDDIRS"
1022     BUILDDIR=${BUILDDIR:-.}
1023 edhill 1.12 if test "x$STANDARDDIRS" = x ; then
1024     STANDARDDIRS="eesupp model"
1025     fi
1026 edhill 1.1 for d in $STANDARDDIRS ; do
1027     adr="$ROOTDIR/$d/src"
1028     if test ! -d $adr ; then
1029     echo "Error: directory $adr not found -- please check that ROOTDIR=\"$ROOTDIR\""
1030     echo " is correct and that you correctly specified the STANDARDDIRS option"
1031     exit 1
1032     else
1033     SOURCEDIRS="$SOURCEDIRS $adr"
1034     fi
1035     adr="$ROOTDIR/$d/inc"
1036     if test ! -d $adr ; then
1037     echo "Error: directory $adr not found -- please check that ROOTDIR=\"$ROOTDIR\""
1038     echo " is correct and that you correctly specified the STANDARDDIRS option"
1039     exit 1
1040     else
1041     INCLUDEDIRS="$INCLUDEDIRS $adr"
1042     fi
1043     done
1044    
1045 edhill 1.22 echo " Searching for CPP_OPTIONS.h in order to warn about the presence"
1046     echo " of \"#define ALLOW_PKGNAME\"-type statements:"
1047 edhill 1.12 CPP_OPTIONS=
1048     spaths=". $INCLUDEDIRS"
1049     for i in $spaths ; do
1050     try="$i/CPP_OPTIONS.h"
1051     # echo -n " trying $try : "
1052     if test -f $try -a -r $try ; then
1053     echo " found CPP_OPTIONS=\"$try\""
1054     CPP_OPTIONS="$try"
1055     break
1056     fi
1057     done
1058     if test "x$CPP_OPTIONS" = x ; then
1059     echo "Error: can't find \"CPP_OPTIONS.h\" in the path list: $spaths"
1060     exit 1
1061     fi
1062     # New safety test: make sure packages are not mentioned in CPP_OPTIONS.h
1063     names=`ls -1 "$ROOTDIR/pkg"`
1064     for n in $names ; do
1065     test_for_package_in_cpp_options $CPP_OPTIONS $n
1066     done
1067    
1068 edhill 1.1
1069 edhill 1.14 # Here, we build the list of files to be "run through" the adjoint
1070     # compiler.
1071     if test -f ./ad_files ; then
1072     rm -f ./ad_files
1073     fi
1074     echo " Creating the list of files for the adjoint compiler."
1075     for i in $SOURCEDIRS ; do
1076     list_files=`( cd $i && ls -1 *.list 2>/dev/null )`
1077     for j in $list_files ; do
1078     cat $i/$j >> ad_files
1079     done
1080     done
1081    
1082     cat <<EOF > adjoint_sed
1083     s/call adopen(/call adopen ( mythid,\\
1084     \& /g
1085     s/call adclose(/call adclose( mythid,\\
1086     \& /g
1087     s/call adread(/call adread ( mythid,\\
1088     \& /g
1089     s/call adwrite(/call adwrite( mythid,\\
1090     \& /g
1091    
1092     EOF
1093    
1094 edhill 1.2 echo
1095     echo "=== Creating the Makefile ==="
1096 edhill 1.1 echo " setting INCLUDES"
1097     for i in $INCLUDEDIRS ; do
1098 edhill 1.12 if ! test -d $i ; then
1099     # INCLUDES="$INCLUDES -I$i"
1100     # else
1101 edhill 1.1 echo "Warning: can't find INCLUDEDIRS=\"$i\""
1102     fi
1103     done
1104    
1105     echo " Determining the list of source and include files"
1106     rm -rf .links.tmp
1107     mkdir .links.tmp
1108     echo "# This section creates symbolic links" > srclinks.tmp
1109     echo "" >> srclinks.tmp
1110 cnh 1.3 echo -n 'SRCFILES = ' > srclist.inc
1111     echo -n 'CSRCFILES = ' > csrclist.inc
1112     echo -n 'F90SRCFILES = ' > f90srclist.inc
1113 edhill 1.1 echo -n 'HEADERFILES = ' > hlist.inc
1114 edhill 1.14 echo -n 'AD_FLOW_FILES = ' > ad_flow_files.inc
1115 adcroft 1.9 alldirs="$SOURCEDIRS $INCLUDEDIRS ."
1116 edhill 1.1 for d in $alldirs ; do
1117     deplist=
1118 edhill 1.14 sfiles=`( cd $d; echo *.[h,c,F] *.flow )`
1119 cnh 1.3 sfiles=`( echo $sfiles; cd $d; echo *.F90 )`
1120 edhill 1.1 for sf in $sfiles ; do
1121     if test ! -r ".links.tmp/$sf" ; then
1122     if test -f "$d/$sf" ; then
1123 edhill 1.15 extn=`echo $sf | $AWK -F '.' '{print $NF}'`
1124 edhill 1.1 touch .links.tmp/$sf
1125     deplist="$deplist $sf"
1126     case $extn in
1127     F)
1128     echo " \\" >> srclist.inc
1129     echo -n " $sf" >> srclist.inc
1130     ;;
1131 cnh 1.3 F90)
1132     echo " \\" >> f90srclist.inc
1133     echo -n " $sf" >> f90srclist.inc
1134     ;;
1135 edhill 1.1 c)
1136     echo " \\" >> csrclist.inc
1137     echo -n " $sf" >> csrclist.inc
1138     ;;
1139     h)
1140     echo " \\" >> hlist.inc
1141     echo -n " $sf" >> hlist.inc
1142     ;;
1143 edhill 1.14 flow)
1144     echo " \\" >> ad_flow_files.inc
1145     echo -n " $sf" >> ad_flow_files.inc
1146     ;;
1147 edhill 1.1 esac
1148     fi
1149     fi
1150     done
1151     if test "x$deplist" != x ; then
1152 edhill 1.2 echo "" >> srclinks.tmp
1153     echo "# These files are linked from $d" >> srclinks.tmp
1154 edhill 1.1 echo "$deplist :" >> srclinks.tmp
1155 edhill 1.2 printf "\t\$(LN) %s/\$@ \$@\n" $d >> srclinks.tmp
1156 edhill 1.1 fi
1157     done
1158     rm -rf .links.tmp
1159     echo "" >> srclist.inc
1160     echo "" >> csrclist.inc
1161 cnh 1.3 echo "" >> f90srclist.inc
1162 edhill 1.1 echo "" >> hlist.inc
1163 edhill 1.14 echo "" >> ad_flow_files.inc
1164 edhill 1.1
1165     if test -e $MAKEFILE ; then
1166     mv -f $MAKEFILE "$MAKEFILE.bak"
1167     fi
1168     echo " Writing makefile: $MAKEFILE"
1169     echo "# Multithreaded + multi-processing makefile for:" > $MAKEFILE
1170     echo "# $MACHINE" >> $MAKEFILE
1171     echo "# This makefile was generated automatically on" >> $MAKEFILE
1172     echo "# $THISDATE" >> $MAKEFILE
1173     echo "# by the command:" >> $MAKEFILE
1174     echo "# $0 $@" >> $MAKEFILE
1175     echo "# executed by:" >> $MAKEFILE
1176     echo "# $USER@${THISHOSTNAME}:${THISCWD}" >> $MAKEFILE
1177 edhill 1.21
1178     EXE_AD=$EXECUTABLE"_ad"
1179     EXE_FTL=$EXECUTABLE"_ftl"
1180     EXE_SVD=$EXECUTABLE"_svd"
1181    
1182 edhill 1.1 cat >>$MAKEFILE <<EOF
1183     #
1184     # BUILDDIR : Directory where object files are written
1185     # SOURCEDIRS : Directories containing the source (.F) files
1186     # INCLUDEDIRS : Directories containing the header-source (.h) files
1187     # EXEDIR : Directory where executable that is generated is written
1188     # EXECUTABLE : Full path of executable binary
1189     #
1190     # CPP : C-preprocessor command
1191     # INCLUDES : Directories searched for header files
1192     # DEFINES : Macro definitions for CPP
1193     # MAKEDEPEND : Dependency generator
1194     # KPP : Special preprocessor command (specific to platform)
1195     # KFLAGS : Flags for KPP
1196     # FC : Fortran compiler command
1197     # FFLAGS : Configuration/debugging options for FC
1198     # FOPTIM : Optimization options for FC
1199     # LINK : Command for link editor program
1200     # LIBS : Library flags /or/ additional optimization/debugging flags
1201    
1202     ROOTDIR = ${ROOTDIR}
1203     BUILDDIR = ${BUILDDIR}
1204     SOURCEDIRS = ${SOURCEDIRS}
1205     INCLUDEDIRS = ${INCLUDEDIRS}
1206     EXEDIR = ${EXEDIR}
1207     EXECUTABLE = \$(EXEDIR)/${EXECUTABLE}
1208     TOOLSDIR = ${TOOLSDIR}
1209    
1210 edhill 1.14 #eh3 new defines for the adjoint work
1211     AUTODIFF = ${ROOTDIR}/pkg/autodiff
1212 edhill 1.21 EXE_AD = ${EXE_AD}
1213     EXE_FTL = ${EXE_FTL}
1214     EXE_SVD = ${EXE_SVD}
1215 edhill 1.14
1216 edhill 1.1 EOF
1217    
1218     # Note: figure out some way to add Hyades JAM libraries here
1219    
1220     cat >>$MAKEFILE <<EOF
1221     # Unix ln (link)
1222     LN = ${LN}
1223     # C preprocessor
1224     CPP = cat \$< | ${S64} | ${CPP}
1225     # Dependency generator
1226     MAKEDEPEND = ${MAKEDEPEND}
1227     # Special preprocessor (KAP on DECs, FPP on Crays)
1228     KPP = ${KPP}
1229     # Fortran compiler
1230     FC = ${FC}
1231 cnh 1.3 # Fortran compiler
1232     F90C = ${F90C}
1233 edhill 1.1 # Link editor
1234     LINK = ${LINK}
1235    
1236     # Defines for CPP
1237     DEFINES = ${DEFINES}
1238     # Includes for CPP
1239     INCLUDES = ${INCLUDES}
1240     # Flags for KPP
1241     KFLAGS1 = ${KFLAGS1}
1242     KFLAGS2 = ${KFLAGS2}
1243     # Optim./debug for FC
1244     FFLAGS = ${FFLAGS}
1245     FOPTIM = ${FOPTIM}
1246 cnh 1.3 # Optim./debug for FC
1247     F90FLAGS = ${F90FLAGS}
1248     F90OPTIM = ${F90OPTIM}
1249 edhill 1.1 # Flags for CC
1250     CFLAGS = ${CFLAGS}
1251     # Files that should not be optimized
1252     NOOPTFILES = ${NOOPTFILES}
1253     NOOPTFLAGS = ${NOOPTFLAGS}
1254     # Flags and libraries needed for linking
1255     LIBS = ${LIBS} \$(XLIBS)
1256 cnh 1.3 # Name of the Mekfile
1257     MAKEFILE=${MAKEFILE}
1258 edhill 1.1
1259     EOF
1260    
1261 edhill 1.14 cat srclist.inc >> $MAKEFILE
1262     cat csrclist.inc >> $MAKEFILE
1263     cat f90srclist.inc >> $MAKEFILE
1264     cat hlist.inc >> $MAKEFILE
1265     cat ad_flow_files.inc >> $MAKEFILE
1266     echo >> $MAKEFILE
1267 cnh 1.3 echo 'F77FILES = $(SRCFILES:.F=.f)' >> $MAKEFILE
1268     echo 'F90FILES = $(F90SRCFILES:.F90=.f90)' >> $MAKEFILE
1269     echo 'OBJFILES = $(SRCFILES:.F=.o) $(CSRCFILES:.c=.o) $(F90SRCFILES:.F90=.o)' >> $MAKEFILE
1270 edhill 1.1
1271 cnh 1.3 rm -f srclist.inc csrclist.inc hlist.inc flist.tmp clist.tmp f90srclist.inc
1272 edhill 1.14 rm -f ad_flow_files.inc
1273 edhill 1.1
1274     cat >>$MAKEFILE <<EOF
1275    
1276     .SUFFIXES:
1277 cnh 1.3 .SUFFIXES: .o .f .p .F .c .F90 .f90
1278 edhill 1.1
1279     all: \$(EXECUTABLE)
1280     \$(EXECUTABLE): \$(OBJFILES)
1281     \$(LINK) -o \$@ \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) \$(LIBS)
1282     depend:
1283     @make links
1284     \$(MAKEDEPEND) -o .f \$(DEFINES) \$(INCLUDES) \$(SRCFILES)
1285 edhill 1.7 ${TOOLSDIR}/f90mkdepend >> \$(MAKEFILE)
1286 edhill 1.1
1287 cnh 1.3 links: \$(SRCFILES) \$(CSRCFILES) \$(HEADERFILES) \$(F90SRCFILES)
1288 edhill 1.1
1289 cnh 1.3 small_f: \$(F77FILES) \$(F90FILES)
1290 edhill 1.1
1291     output.txt: \$(EXECUTABLE)
1292     @printf 'running ... '
1293     @\$(EXECUTABLE) > \$@
1294    
1295     clean:
1296 edhill 1.22 -cat AD_CONFIG.template > AD_CONFIG.h
1297 cnh 1.3 -rm -rf *.o *.f *.p *.f90 *.mod ${RMFILES} work.{pc,pcl}
1298 edhill 1.1 Clean:
1299     @make clean
1300     @make cleanlinks
1301 edhill 1.22 -rm -f Makefile.bak genmake_state genmake_*optfile make.log
1302 edhill 1.1 CLEAN:
1303     @make Clean
1304     -find \$(EXEDIR) -name "*.meta" -exec rm {} \;
1305     -find \$(EXEDIR) -name "*.data" -exec rm {} \;
1306     -find \$(EXEDIR) -name "fort.*" -exec rm {} \;
1307 edhill 1.12 -rm -f \$(EXECUTABLE) output.txt
1308 edhill 1.1
1309 edhill 1.18 #eh3 Makefile: makefile
1310 edhill 1.1 makefile:
1311     ${0} $@
1312     cleanlinks:
1313     -find . -type l -exec rm {} \;
1314    
1315     # The normal chain of rules is ( .F - .f - .o )
1316     .F.f:
1317     \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@
1318     .f.o:
1319     \$(FC) \$(FFLAGS) \$(FOPTIM) -c \$<
1320 cnh 1.3 .F90.f90:
1321     \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@
1322     .f90.o:
1323     \$(F90C) \$(F90FLAGS) \$(F90OPTIM) -c \$<
1324 edhill 1.1 .c.o:
1325     \$(CC) \$(CFLAGS) -c \$<
1326    
1327     # Special exceptions that use the ( .F - .p - .f - .o ) rule-chain
1328     .F.p:
1329     \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@
1330     .p.f:
1331     \$(KPP) \$(KFLAGS1)\$@ \$(KFLAGS2) \$<
1332 edhill 1.14
1333     #=========================================
1334     #=== Automatic Differentiation Rules ===
1335    
1336     TAMC = ${TAMC}
1337     TAF = ${TAF}
1338    
1339 edhill 1.17 TAF_EXTRA = ${TAF_EXTRA}
1340     TAMC_EXTRA = ${TAMC_EXTRA}
1341    
1342 edhill 1.14 EOF
1343    
1344     ad_vars="AD_TAMC_FLAGS AD_TAF_FLAGS"
1345     ad_vars="$ad_vars FTL_TAMC_FLAGS FTL_TAF_FLAGS"
1346     ad_vars="$ad_vars SVD_TAMC_FLAGS SVD_TAF_FLAGS"
1347     for i in $ad_vars ; do
1348     name=$i
1349     t1="t2=\$"`echo $i`
1350     eval $t1
1351     printf "%-20s = " $name >> $MAKEFILE
1352     echo $t2 >> $MAKEFILE
1353     done
1354    
1355     echo " Add the source list for AD code generation"
1356     echo >> $MAKEFILE
1357     echo -n "AD_FILES = " >> $MAKEFILE
1358     AD_FILES=`cat ad_files`
1359     for i in $AD_FILES ; do
1360     echo " \\" >> $MAKEFILE
1361     echo -n " $i" >> $MAKEFILE
1362     done
1363     echo >> $MAKEFILE
1364 edhill 1.21 rm -f ad_files
1365 edhill 1.14
1366     cat >>$MAKEFILE <<EOF
1367    
1368 edhill 1.16 # ... AD ...
1369 edhill 1.23 adall: ad_taf
1370     adtaf: ad_taf_output.f
1371     adtamc: ad_tamc_output.f
1372 edhill 1.21
1373 edhill 1.23 ad_input_code.f: \$(SRCFILES) \$(HEADERFILES)
1374     cmp ad_config.template AD_CONFIG.h || cat ad_config.template > AD_CONFIG.h
1375 edhill 1.22 @make \$(F77FILES)
1376     @make \$(AD_FLOW_FILES)
1377     cat \$(AD_FLOW_FILES) \$(AD_FILES) > ad_input_code.f
1378    
1379 edhill 1.14 ad_taf_output.f: ad_input_code.f
1380 edhill 1.17 \$(TAF) \$(AD_TAF_FLAGS) \$(TAF_EXTRA) ad_input_code.f
1381 edhill 1.14 cat ad_input_code_ad.f | sed -f adjoint_sed > ad_taf_output.f
1382    
1383     ad_taf: ad_taf_output.o \$(OBJFILES)
1384 edhill 1.21 \$(LINK) -o ${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_taf_output.o \$(LIBS)
1385 edhill 1.14
1386     ad_tamc_output.f: ad_input_code.f
1387 edhill 1.17 \$(TAMC) \$(AD_TAMC_FLAGS) \$(TAMC_EXTRA) ad_input_code.f
1388 edhill 1.16 cat ad_input_code_ad.f | sed -f adjoint_sed > ad_tamc_output.f
1389 edhill 1.14
1390     ad_tamc: ad_tamc_output.o \$(OBJFILES)
1391 edhill 1.21 \$(LINK) -o ${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_tamc_output.o \$(LIBS)
1392 edhill 1.14
1393    
1394 edhill 1.19 # ... FTL ...
1395 edhill 1.23 ftlall: ftl_taf
1396     ftltaf: ftl_taf_output.f
1397     ftltamc: ftl_tamc_output.f
1398 edhill 1.21
1399 edhill 1.22 ftl_input_code.f: \$(SRCFILES)
1400 edhill 1.23 cmp ftl_config.template AD_CONFIG.h || cat ftl_config.template > AD_CONFIG.h
1401     @make \$(F77FILES)
1402 edhill 1.22 @make \$(AD_FLOW_FILES)
1403     cat \$(AD_FLOW_FILES) \$(AD_FILES) > ftl_input_code.f
1404    
1405     ftl_taf_output.f: ftl_input_code.f
1406     \$(TAF) \$(FTL_TAF_FLAGS) \$(TAF_EXTRA) ftl_input_code.f
1407     cat ftl_input_code_ftl.f | sed -f adjoint_sed > ftl_taf_output.f
1408 edhill 1.14
1409 edhill 1.19 ftl_taf: ftl_taf_output.o \$(OBJFILES)
1410 edhill 1.21 \$(LINK) -o ${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_taf_output.o \$(LIBS)
1411 edhill 1.14
1412 edhill 1.22 ftl_tamc_output.f: ftl_input_code.f
1413     \$(TAMC) \$(FTL_TAMC_FLAGS) \$(TAMC_EXTRA) ftl_input_code.f
1414     cat ftl_input_code_ftl.f | sed -f adjoint_sed > ftl_tamc_output.f
1415 edhill 1.16
1416 edhill 1.19 ftl_tamc: ftl_tamc_output.o \$(OBJFILES)
1417 edhill 1.21 \$(LINK) -o ${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_tamc_output.o \$(LIBS)
1418 edhill 1.16
1419    
1420     # ... SVD ...
1421 edhill 1.21 svd: svd_taf
1422     svd_taf_f: svd_taf_output.f
1423    
1424 edhill 1.22 svd_input_code.f: \$(SRCFILES)
1425 edhill 1.23 cmp svd_config.template AD_CONFIG.h || cat svd_config.template > AD_CONFIG.h
1426     @make \$(F77FILES)
1427 edhill 1.22 @make \$(AD_FLOW_FILES)
1428     cat \$(AD_FLOW_FILES) \$(AD_FILES) > svd_input_code.f
1429    
1430     svd_taf_output.f: svd_input_code.f
1431     \$(TAF) \$(SVD_TAF_FLAGS) \$(TAF_EXTRA) svd_input_code.f
1432     cat svd_input_code_ad.f | sed -f adjoint_sed > svd_taf_output.f
1433 edhill 1.16
1434     svd_taf: svd_taf_output.o \$(OBJFILES)
1435 edhill 1.21 \$(LINK) -o ${EXE_SVD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) svd_taf_output.o \$(LIBS)
1436 edhill 1.14
1437    
1438     #=========================================
1439 edhill 1.1
1440     EOF
1441 edhill 1.7
1442     if test "x$EXEHOOK" != x ; then
1443     printf "\nexehook:\n\t%s\n" $EXEHOOK >> $MAKEFILE
1444     fi
1445 edhill 1.1
1446     echo " Making list of \"exceptions\" that need \".p\" files"
1447     for i in $KPPFILES ; do
1448     base=`echo $i | sed -e 's/\/.*\///g' | sed -e 's/\..*$//g'`
1449     RETVAL=$?
1450     if test "x$RETVAL" != x0 ; then
1451     echo "Error: unable to add file \"$i\" to the exceptions list"
1452     fi
1453     echo "$base.f: $base.p" >> $MAKEFILE
1454     done
1455    
1456     echo " Making list of NOOPTFILES"
1457     for i in $NOOPTFILES ; do
1458     base=`echo $i | sed -e 's/\/.*\///g' | sed -e 's/\..*$//g'`
1459     RETVAL=$?
1460     if test "x$RETVAL" != x0 ; then
1461     echo "Error: unable to add file \"$i\" to the exceptions list"
1462     fi
1463     echo "$base.o: $base.f" >> $MAKEFILE
1464 edhill 1.2 printf "\t\$(FC) \$(FFLAGS) \$(NOOPTFLAGS) -c \$<\n" >> $MAKEFILE
1465 edhill 1.1 done
1466    
1467     echo " Add rules for links"
1468     cat srclinks.tmp >> $MAKEFILE
1469     rm -f srclinks.tmp
1470    
1471     echo " Adding makedepend marker"
1472 edhill 1.2 printf "\n\n# DO NOT DELETE\n" >> $MAKEFILE
1473 edhill 1.1
1474 edhill 1.2 printf "\n=== Done ===\n"
1475 edhill 1.22
1476     # Write the "template" files for the adjoint builds
1477 edhill 1.23 cat >AD_CONFIG.template <<EOF
1478 edhill 1.22 C WARNING: This file is automatically generated by genmake2 and
1479     C used by the Makefile rules. Please DO NOT EDIT this file
1480 edhill 1.23 C unless you are CERTAIN that you know what you are doing.
1481 edhill 1.22
1482     #undef ALLOW_ADJOINT_RUN
1483     #undef ALLOW_TANGENTLINEAR_RUN
1484     #undef ALLOW_ECCO_OPTIMIZATION
1485     EOF
1486 edhill 1.23 cat >ad_config.template <<EOF
1487 edhill 1.22 C WARNING: This file is automatically generated by genmake2 and
1488     C used by the Makefile rules. Please DO NOT EDIT this file
1489 edhill 1.23 C unless you are CERTAIN that you know what you are doing.
1490 edhill 1.22
1491 edhill 1.23 #define ALLOW_ADJOINT_RUN
1492 edhill 1.22 #undef ALLOW_TANGENTLINEAR_RUN
1493     #undef ALLOW_ECCO_OPTIMIZATION
1494     EOF
1495 edhill 1.23 cat >ftl_config.template <<EOF
1496 edhill 1.22 C WARNING: This file is automatically generated by genmake2 and
1497     C used by the Makefile rules. Please DO NOT EDIT this file
1498 edhill 1.23 C unless you are CERTAIN that you know what you are doing.
1499 edhill 1.22
1500     #undef ALLOW_ADJOINT_RUN
1501 edhill 1.23 #define ALLOW_TANGENTLINEAR_RUN
1502 edhill 1.22 #undef ALLOW_ECCO_OPTIMIZATION
1503     EOF
1504 edhill 1.23 cat >svd_config.template <<EOF
1505 edhill 1.22 C WARNING: This file is automatically generated by genmake2 and
1506     C used by the Makefile rules. Please DO NOT EDIT this file
1507 edhill 1.23 C unless you are CERTAIN that you know what you are doing.
1508 edhill 1.22
1509     #undef ALLOW_ADJOINT_RUN
1510     #undef ALLOW_TANGENTLINEAR_RUN
1511     #undef ALLOW_ECCO_OPTIMIZATION
1512     EOF
1513     cp AD_CONFIG.template AD_CONFIG.h
1514 edhill 1.5
1515    
1516     # Write the "state" for future records
1517     if test "x$DUMPSTATE" != xf ; then
1518 edhill 1.12 echo -n "" > genmake_state
1519 edhill 1.5 for i in $gm_state ; do
1520     t1="t2=\$$i"
1521     eval $t1
1522 edhill 1.12 echo "$i='$t2'" >> genmake_state
1523 edhill 1.5 done
1524     fi

  ViewVC Help
Powered by ViewVC 1.1.22