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

Contents of /MITgcm/tools/genmake2

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


Revision 1.15 - (show annotations) (download)
Tue Oct 21 18:35:08 2003 UTC (20 years, 5 months ago) by edhill
Branch: MAIN
Changes since 1.14: +11 -10 lines
 o fix genmake2 for broken SUNOS awk implementations

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

  ViewVC Help
Powered by ViewVC 1.1.22