/[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.38 - (hide annotations) (download)
Fri Nov 14 12:52:56 2003 UTC (20 years, 4 months ago) by edhill
Branch: MAIN
Changes since 1.37: +5 -1 lines
 o cleanup test-compilation files

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

  ViewVC Help
Powered by ViewVC 1.1.22