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

Diff of /MITgcm/tools/genmake2

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

revision 1.37 by heimbach, Fri Nov 14 05:25:46 2003 UTC revision 1.49 by edhill, Tue Nov 25 17:22:47 2003 UTC
# Line 1  Line 1 
1  #!/bin/sh  #! /usr/bin/env bash
2  #  #
3  # $Header$  # $Header$
4  #  #
# Line 76  find_possible_configs()  { Line 76  find_possible_configs()  {
76      PLATFORM=`echo $tmp3 | sed -e 's/i[3-6]86/ia32/' | sed -e 's/athlon/ia32/'`      PLATFORM=`echo $tmp3 | sed -e 's/i[3-6]86/ia32/' | sed -e 's/athlon/ia32/'`
77      OFLIST=`(cd $ROOTDIR/tools/build_options; ls | grep "^$PLATFORM")`      OFLIST=`(cd $ROOTDIR/tools/build_options; ls | grep "^$PLATFORM")`
78      echo "  The platform appears to be:  $PLATFORM"      echo "  The platform appears to be:  $PLATFORM"
 #     if test "x$OFLIST" = x ; then  
 #       echo "  No pre-defined options files were found matching this platform"  
 #       echo "  but examples for other platforms can be found in:"  
 #       echo "    $ROOTDIR/tools/build_options"  
 #     else  
 #       echo "  Options files (located in $ROOTDIR/tools/build_options) that"  
 #       echo "  may work with this machine are:"  
 #       for i in $OFLIST ; do  
 #           echo "    $i"  
 #       done  
 #     fi  
79            
80      echo "test" > test      echo "test" > test
81      ln -s ./test link      ln -s ./test link
# Line 225  get_pdepend_list()  { Line 214  get_pdepend_list()  {
214    
215  #  Explain usage  #  Explain usage
216  usage()  {  usage()  {
217      echo  cat <<EOF
218      echo "Usage: "$0" [OPTIONS]"  
219      echo "  where [OPTIONS] can be:"  Usage: "$0" [OPTIONS]
220      echo    where [OPTIONS] can be:
221      echo "    -help | --help | -h | --h"  
222      echo "    -nooptfile | --nooptfile"      -help | --help | -h | --h
223      echo "      -optfile NAME | --optfile NAME | -of NAME | --of NAME"            Print this help message and exit.
224      echo "      -optfile=NAME | --optfile=NAME | -of=NAME | --of=NAME"  
225      echo "    -pdepend NAME | --pdepend NAME"      -nooptfile | --nooptfile
226      echo "      -pdepend=NAME | --pdepend=NAME"        -optfile NAME | --optfile NAME | -of NAME | --of NAME
227      echo "    -pdefault NAME | --pdefault NAME"        -optfile=NAME | --optfile=NAME | -of=NAME | --of=NAME
228      echo "      -pdefault=NAME | --pdefault=NAME"            Use "NAME" as the optfile.  By default, an attempt will be
229      echo "    -make NAME | -m NAME"            made to find an appropriate "standard" optfile in the
230      echo "      --make=NAME | -m=NAME"            tools/build_options/ directory.
231      echo "    -makefile NAME | -mf NAME"  
232      echo "      --makefile=NAME | -mf=NAME"      -pdepend NAME | --pdepend NAME
233      echo "    -platform NAME | --platform NAME | -pl NAME | --pl NAME"        -pdepend=NAME | --pdepend=NAME
234      echo "      -platform=NAME | --platform=NAME | -pl=NAME | --pl=NAME"            Get package dependency information from "NAME".
235      echo "    -rootdir NAME | --rootdir NAME | -rd NAME | --rd NAME"  
236      echo "      -rootdir=NAME | --rootdir=NAME | -rd=NAME | --rd=NAME"      -pdefault NAME | --pdefault NAME
237      echo "    -mods NAME | --mods NAME | -mo NAME | --mo NAME"        -pdefault=NAME | --pdefault=NAME
238      echo "      -mods=NAME | --mods=NAME | -mo=NAME | --mo=NAME"            Get the default package list from "NAME".
239      echo "    -disable NAME | --disable NAME"  
240      echo "      -disable=NAME | --disable=NAME"      -make NAME | -m NAME
241      echo "    -enable NAME | --enable NAME"        --make=NAME | -m=NAME
242      echo "      -enable=NAME | --enable=NAME"            Use "NAME" for the MAKE program. The default is "make" but
243      echo "    -standarddirs NAME | --standarddirs NAME"            many platforms, "gmake" is the preferred choice.
244      echo "      -standarddirs=NAME | --standarddirs=NAME"  
245      echo "    -noopt NAME | --noopt NAME"      -makefile NAME | -mf NAME
246      echo "      -noopt=NAME | --noopt=NAME"        --makefile=NAME | -mf=NAME
247  #    echo "    -cpp NAME | --cpp NAME"            Call the makefile "NAME".  The default is "Makefile".
248  #    echo "      -cpp=NAME | --cpp=NAME"  
249      echo "    -fortran NAME | --fortran NAME | -fc NAME | --fc NAME"      -rootdir NAME | --rootdir NAME | -rd NAME | --rd NAME
250      echo "      -fc=NAME | --fc=NAME"        -rootdir=NAME | --rootdir=NAME | -rd=NAME | --rd=NAME
251      echo "    -[no]ieee | --[no]ieee"            Specify the location of the MITgcm ROOTDIR as "NAME".
252      echo "    -[no]mpi | --[no]mpi"            By default, genamke will try to find the location by
253      echo "    -[no]jam | --[no]jam"            looking in parent directories (up to the 5th parent).
254      echo  
255      echo "  and NAME is a string such as:"      -mods NAME | --mods NAME | -mo NAME | --mo NAME
256      echo        -mods=NAME | --mods=NAME | -mo=NAME | --mo=NAME
257      echo "    --enable pkg1   --enable 'pkg1 pkg2'   --enable 'pkg1 pkg2 pkg3'"            Here, "NAME" specifies a list of directories that are
258      echo "    -mods=dir1   -mods='dir1'   -mods='dir1 dir2 dir3'"            used for additional source code.  Files found in the
259      echo "    -foptim='-Mvect=cachesize:512000,transform -xtypemap=real:64,double:64,integer:32'"            "mods list" are given preference over files of the same
260      echo            name found elsewhere.
261      echo "  which, depending upon your shell, may need to be single-quoted"  
262      echo "  if it contains spaces, dashes, or other special characters."      -disable NAME | --disable NAME
263          -disable=NAME | --disable=NAME
264              Here "NAME" specifies a list of packages that we don't
265              want to use.  If this violates package dependencies,
266              genamke will exit with an error message.
267    
268        -enable NAME | --enable NAME
269          -enable=NAME | --enable=NAME
270              Here "NAME" specifies a list of packages that we wish
271              to specifically enable.  If this violates package
272              dependencies, genamke will exit with an error message.
273    
274        -standarddirs NAME | --standarddirs NAME
275          -standarddirs=NAME | --standarddirs=NAME
276              Here, "NAME" specifies a list of directories to be
277              used as the "standard" code.
278    
279        -fortran NAME | --fortran NAME | -fc NAME | --fc NAME
280          -fc=NAME | --fc=NAME
281              Use "NAME" as the fortran compiler.  By default, genmake
282              will search for a working compiler by trying a list of
283              "usual suspects" such as g77, f77, etc.
284    
285        -[no]ieee | --[no]ieee
286              Do or don't use IEEE numerics.  Note that this option
287              *only* works if it is supported by the OPTFILE that
288              is being used.
289    
290      While it is most often a single word, the "NAME" variables specified
291      above can in many cases be a space-delimited string such as:
292    
293        --enable pkg1   --enable 'pkg1 pkg2'   --enable 'pkg1 pkg2 pkg3'
294        -mods=dir1   -mods='dir1'   -mods='dir1 dir2 dir3'
295        -foptim='-Mvect=cachesize:512000,transform -xtypemap=real:64,double:64,integer:32'
296    
297      which, depending upon your shell, may need to be single-quoted.
298    
299      For more detailed genmake documentation, please see:
300    
301        http://mitgcm.org/devel_HOWTO/
302    
303    EOF
304    
305      exit 1      exit 1
306  }  }
307    
# Line 281  get_fortran_c_namemangling()  { Line 312  get_fortran_c_namemangling()  {
312      cat > genmake_test.c <<EOF      cat > genmake_test.c <<EOF
313  void tcall( char * string ) { tsub( string ); }  void tcall( char * string ) { tsub( string ); }
314  EOF  EOF
315      $MAKE genmake_test.o > genmake_test.log 2>&1      $MAKE genmake_test.o >> genmake_warnings 2>&1
316      RETVAL=$?      RETVAL=$?
317      if test "x$RETVAL" != x0 ; then      if test "x$RETVAL" != x0 ; then
         cat genmake_test.log >> genmake_errors  
318          FC_NAMEMANGLE=$default_nm          FC_NAMEMANGLE=$default_nm
319          echo          cat <<EOF>> genmake_errors
320          echo "WARNING: C test compile fails -- please see \"genmake_errors\""  
321          echo "WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'"  WARNING: C test compile fails
322          echo "WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here."  WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'
323    WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here
324    EOF
325          return 1          return 1
326      fi      fi
327      c_tcall=`nm genmake_test.o | grep tcall | cut -d ' ' -f 3`      c_tcall=`nm genmake_test.o | grep 'T ' | grep tcall | cut -d ' ' -f 3`
328      RETVAL=$?      RETVAL=$?
329      if test "x$RETVAL" != x0 ; then      if test "x$RETVAL" != x0 ; then
330          FC_NAMEMANGLE=$default_nm          FC_NAMEMANGLE=$default_nm
331          echo          cat <<EOF>> genmake_warnings
332          echo "WARNING: The \"nm\" command failed."  
333          echo "WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'"  WARNING: The "nm" command failed.
334          echo "WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here."  WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'
335    WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here
336    EOF
337          return 1          return 1
338      fi      fi
339      cat > genmake_tcomp.f <<EOF      cat > genmake_tcomp.f <<EOF
# Line 308  EOF Line 342  EOF
342        call tsub( string )        call tsub( string )
343        end        end
344  EOF  EOF
345      $FC $FFLAGS $DEFINES -c genmake_tcomp.f > genmake_tcomp.log 2>&1      $FC $FFLAGS $DEFINES -c genmake_tcomp.f >> genmake_warnings 2>&1
346      RETVAL=$?      RETVAL=$?
347      if test "x$RETVAL" != x0 ; then      if test "x$RETVAL" != x0 ; then
         cat genmake_tcomp.log >> genmake_errors  
348          FC_NAMEMANGLE=$default_nm          FC_NAMEMANGLE=$default_nm
349          echo          cat <<EOF>> genmake_warnings
350          echo "WARNING: FORTRAN test compile fails -- please see \"genmake_errors\""  
351          echo "WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'"  WARNING: FORTRAN test compile fails -- please see "genmake_errors"
352          echo "WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here."  WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'
353    WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here.
354    EOF
355          return 1          return 1
356      fi      fi
357      f_tcall=`nm genmake_tcomp.o | grep tcall | cut -d ' ' -f 3`      f_tcall=`nm genmake_tcomp.o | grep 'T ' | grep tcall | cut -d ' ' -f 3`
358      RETVAL=$?      RETVAL=$?
359      if test "x$RETVAL" != x0 ; then      if test "x$RETVAL" != x0 ; then
360          FC_NAMEMANGLE=$default_nm          FC_NAMEMANGLE=$default_nm
361          echo          cat <<EOF>> genmake_warnings
362          echo "WARNING: The \"nm\" command failed."  
363          echo "WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'"  WARNING: The "nm" command failed.
364          echo "WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here."  WARNING: We'll try to use: FC_NAMEMANGLE='$FC_NAMEMANGLE'
365    WARNING: Please contact <MITgcm-support@mitgcm.org> if you need help here.
366    EOF
367          return 1          return 1
368      fi      fi
369    
# Line 353  EOF Line 390  EOF
390      rm -f genmake_tcomp.* genmake_test.*      rm -f genmake_tcomp.* genmake_test.*
391  }  }
392    
393    
394    check_HAVE_CLOC()  {
395        get_fortran_c_namemangling
396        cat <<EOF > genmake_tc_1.c
397    $FC_NAMEMANGLE
398    #include <stdio.h>
399    #include <stdlib.h>
400    #include <unistd.h>
401    #include <assert.h>
402    #include <sys/time.h>
403    void FC_NAMEMANGLE(cloc) ( double *curtim )
404    {
405     struct timeval tv1;
406     gettimeofday(&tv1 , (void *)NULL );
407     *curtim =  (double)((tv1.tv_usec)+(tv1.tv_sec)*1.E6);
408     *curtim = *curtim/1.E6;
409    }
410    EOF
411        make genmake_tc_1.o >> genmake_tc.log 2>&1
412        RET_C=$?
413        cat <<EOF > genmake_tc_2.f
414          program hello
415          Real*8 wtime
416          external cloc
417          call cloc(wtime)
418          print *," HELLO WORLD", wtime
419          end program hello
420    EOF
421        $FC $FFLAGS -o genmake_tc genmake_tc_2.f genmake_tc_1.o >> genmake_tc.log 2>&1
422        RET_F=$?
423        test -x ./genmake_tc  &&  ./genmake_tc >> genmake_tc.log 2>&1
424        RETVAL=$?
425        if test "x$RETVAL" = x0 ; then
426            HAVE_CLOC=t
427            DEFINES="$DEFINES -DHAVE_CLOC"
428        fi
429        rm -f genmake_tc*
430    }
431    
432    
433  #  Set defaults here  #  Set defaults here
434  COMMANDL="$0 $@"  COMMANDL="$0 $@"
435    
# Line 388  NOOPTFLAGS= Line 465  NOOPTFLAGS=
465  HAVE_SYSTEM=  HAVE_SYSTEM=
466  HAVE_FDATE=  HAVE_FDATE=
467  FC_NAMEMANGLE=  FC_NAMEMANGLE=
468    HAVE_CLOC=
469    
470  MODS=  MODS=
471  TOOLSDIR=  TOOLSDIR=
# Line 426  TAMC_EXTRA= Line 504  TAMC_EXTRA=
504    
505    
506  #  The following state can be set directly by command-line switches  #  The following state can be set directly by command-line switches
507  gm_s1="OPTFILE PDEPEND PDEFAULT MAKEFILE PLATFORM ROOTDIR MODS DISABLE ENABLE NOOPT"  gm_s1="OPTFILE PDEPEND PDEFAULT MAKEFILE PLATFORM ROOTDIR MODS DISABLE ENABLE"
508  gm_s2="FC IEEE MPI JAM DUMPSTATE STANDARDDIRS"  gm_s2="FC IEEE MPI JAM DUMPSTATE STANDARDDIRS"
509    
510  #  The following state is not directly set by command-line switches  #  The following state is not directly set by command-line switches
# Line 444  gm_s12="TAF_EXTRA TAMC_EXTRA" Line 522  gm_s12="TAF_EXTRA TAMC_EXTRA"
522  gm_state="COMMANDL $gm_s1 $gm_s2 $gm_s3 $gm_s4 $gm_s5 $gm_s6 $gm_s7"  gm_state="COMMANDL $gm_s1 $gm_s2 $gm_s3 $gm_s4 $gm_s5 $gm_s6 $gm_s7"
523  gm_state="$gm_state $gm_s10 $gm_s11 $gm_s12"  gm_state="$gm_state $gm_s10 $gm_s11 $gm_s12"
524    
525    cat <<EOF
526    
527    GENMAKE :
528    
529    A program for GENerating MAKEfiles for the MITgcm project.  For a
530    quick list of options, use "genmake -h" or for more detail see:
531    
532      http://mitgcm.org/devel_HOWTO/
533    
534    EOF
535    
 echo  
536  echo "===  Processing options files and arguments  ==="  echo "===  Processing options files and arguments  ==="
537  gm_local="genmake_local"  gm_local="genmake_local"
538  for i in . $MODS ; do  for i in . $MODS ; do
# Line 524  for ac_option ; do Line 611  for ac_option ; do
611          -makefile=* | --makefile=* | -ma=* | --ma=*)          -makefile=* | --makefile=* | -ma=* | --ma=*)
612              MAKEFILE=$ac_optarg ;;              MAKEFILE=$ac_optarg ;;
613                    
614          -platform | --platform | -pl | --pl)          -platform | --platform | -pl | --pl | -platform=* | --platform=* | -pl=* | --pl=*)
615              ac_prev=PLATFORM ;;              echo "ERROR: The platform option has been removed.  Please specify"
616          -platform=* | --platform=* | -pl=* | --pl=*)              echo "  the build options using the \"optfile\" mechanism."
617              PLATFORM=$ac_optarg ;;              echo
618                usage
619                ;;
620                    
621          -rootdir | --rootdir | -rd | --rd)          -rootdir | --rootdir | -rd | --rd)
622              ac_prev=ROOTDIR ;;              ac_prev=ROOTDIR ;;
# Line 554  for ac_option ; do Line 643  for ac_option ; do
643          -standarddirs=* | --standarddirs=*)          -standarddirs=* | --standarddirs=*)
644              STANDARDDIRS=$ac_optarg ;;              STANDARDDIRS=$ac_optarg ;;
645    
         -noopt | --noopt)  
             ac_prev=NOOPT ;;  
         -noopt=* | --noopt=*)  
             NOOPT=$ac_optarg ;;  
           
646  #           -cpp | --cpp)  #           -cpp | --cpp)
647  #               ac_prev=cpp ;;  #               ac_prev=cpp ;;
648  #           -cpp=* | --cpp=*)  #           -cpp=* | --cpp=*)
# Line 574  for ac_option ; do Line 658  for ac_option ; do
658          -noieee | --noieee)          -noieee | --noieee)
659              IEEE= ;;              IEEE= ;;
660                    
661          -mpi | --mpi)  #       -jam | --jam)
662              MPI=true ;;  #           JAM=1 ;;
663          -nompi | --nompi)  #       -nojam | --nojam)
664              MPI= ;;  #           JAM=0 ;;
           
         -jam | --jam)  
             JAM=1 ;;  
         -nojam | --nojam)  
             JAM=0 ;;  
665                    
666          -ds | --ds)          -ds | --ds)
667              DUMPSTATE=t ;;              DUMPSTATE=t ;;
# Line 704  if test "x${AD_OPTFILE}" != xNONE ; then Line 783  if test "x${AD_OPTFILE}" != xNONE ; then
783      fi      fi
784  fi  fi
785    
786  #  Check that FC, LINK, CPP, S64, and LN are defined.  If not,  #  Check that FC, LINK, CPP, S64, LN, and MAKE are defined.  If not,
787  #  complain and abort!  #  either set defaults or complain and abort!
788  if test "x$FC" = x ; then  if test "x$FC" = x ; then
789      cat <<EOF 1>&2      cat <<EOF 1>&2
790    
# Line 722  fi Line 801  fi
801  if test "x$CPP" = x ; then  if test "x$CPP" = x ; then
802      CPP="cpp"      CPP="cpp"
803  fi  fi
804    if test "x$MAKE" = x ; then
805        MAKE="make"
806    fi
807  echo "#define A a" | $CPP > test_cpp 2>&1  echo "#define A a" | $CPP > test_cpp 2>&1
808  RETVAL=$?  RETVAL=$?
809  if test "x$RETVAL" != x0 ; then  if test "x$RETVAL" != x0 ; then
# Line 758  EOF Line 840  EOF
840  fi  fi
841  rm -f genmake_test_ln genmake_tlink  rm -f genmake_test_ln genmake_tlink
842    
843    
844  printf "\n===  Checking system libraries  ===\n"  printf "\n===  Checking system libraries  ===\n"
845  echo -n "  Do we have the system() command using $FC...  "  echo -n "  Do we have the system() command using $FC...  "
846  cat > genmake_tcomp.f <<EOF  cat > genmake_tcomp.f <<EOF
# Line 798  else Line 881  else
881  fi  fi
882  rm -f genmake_tcomp*  rm -f genmake_tcomp*
883    
884  echo "  The name mangling convention for $FC is...  "  echo -n "  Can we call simple C routines (here, \"cloc()\") using $FC...  "
885  #FC_NAMEMANGLE="#define FC_NAMEMANGLE(X) X ## _"  check_HAVE_CLOC
886  if test "x$FC_NAMEMANGLE" = x ; then  if test "x$HAVE_CLOC" != x ; then
887      get_fortran_c_namemangling      echo "yes"
888    else
889        echo "no"
890  fi  fi
 echo "    '$FC_NAMEMANGLE'"  
891  echo "$FC_NAMEMANGLE" > FC_NAMEMANGLE.h.template  echo "$FC_NAMEMANGLE" > FC_NAMEMANGLE.h.template
892  cmp FC_NAMEMANGLE.h FC_NAMEMANGLE.h.template > /dev/null 2>&1  cmp FC_NAMEMANGLE.h FC_NAMEMANGLE.h.template > /dev/null 2>&1
893  RETVAL=$?  RETVAL=$?
894  if test "x$RETVAL" != x0 ; then  if test "x$RETVAL" != x0 ; then
895      mv -f FC_NAMEMANGLE.h.template FC_NAMEMANGLE.h      mv -f FC_NAMEMANGLE.h.template FC_NAMEMANGLE.h
896  fi  fi
897    rm -f genmake_t*
898    
899    
900  printf "\n===  Setting defaults  ===\n"  printf "\n===  Setting defaults  ===\n"
# Line 856  fi Line 941  fi
941  if test "x$S64" = x ; then  if test "x$S64" = x ; then
942      S64='$(TOOLSDIR)/set64bitConst.sh'      S64='$(TOOLSDIR)/set64bitConst.sh'
943  fi  fi
944    THIS_SCRIPT=`echo ${0} | sed 's:'$TOOLSDIR':\$(TOOLSDIR):'`
945    
946  EXECUTABLE=${EXECUTABLE:-mitgcmuv}  EXECUTABLE=${EXECUTABLE:-mitgcmuv}
947    
# Line 907  rm -f ./.pd_tmp Line 993  rm -f ./.pd_tmp
993  #  Search for default packages.  Note that a "$ROOTDIR/pkg/pkg_groups"  #  Search for default packages.  Note that a "$ROOTDIR/pkg/pkg_groups"
994  #  file should eventually be added so that, for convenience, one can  #  file should eventually be added so that, for convenience, one can
995  #  specify groups of packages using names like "ocean" and "atmosphere".  #  specify groups of packages using names like "ocean" and "atmosphere".
996  echo  -n "  checking default package list:  "  echo "  checking default package list:  "
997  if test "x${PDEFAULT}" = x ; then  if test "x${PDEFAULT}" = x ; then
998      for i in "." $MODS ; do      for i in "." $MODS ; do
999          if test -r $i"/packages.conf" ; then          if test -r $i"/packages.conf" ; then
# Line 920  if test "x${PDEFAULT}" = x ; then Line 1006  if test "x${PDEFAULT}" = x ; then
1006      PDEFAULT="$ROOTDIR/pkg/pkg_default"      PDEFAULT="$ROOTDIR/pkg/pkg_default"
1007  fi  fi
1008  if test "x${PDEFAULT}" = xNONE ; then  if test "x${PDEFAULT}" = xNONE ; then
1009      echo "default packages file disabled"      echo "    default packages file disabled"
1010  else  else
1011      if test ! -r $PDEFAULT ; then      if test ! -r $PDEFAULT ; then
         echo ""  
1012          echo "Warning:  can't read default packages from PDEFAULT=\"$PDEFAULT\""          echo "Warning:  can't read default packages from PDEFAULT=\"$PDEFAULT\""
1013      else      else
1014          echo "  using PDEFAULT=\"$PDEFAULT\""          echo "    using PDEFAULT=\"$PDEFAULT\""
1015          #  Strip the comments and add all the names          #  Strip the comments and add all the names
1016          def=`cat $PDEFAULT | sed -e 's/#.*$//g' | $AWK '(NF>0){print $0}'`          def=`cat $PDEFAULT | sed -e 's/#.*$//g' | $AWK '(NF>0){print $0}'`
1017          RETVAL=$?          RETVAL=$?
# Line 1062  done Line 1147  done
1147    
1148  # Create a list of #define and #undef to enable/disable packages  # Create a list of #define and #undef to enable/disable packages
1149  PACKAGES_DOT_H=PACKAGES_CONFIG.h  PACKAGES_DOT_H=PACKAGES_CONFIG.h
 cat <<EOF >$PACKAGES_DOT_H".tmp"  
 C=== GENMAKE v2 ===  
 C  The following defines have been set by GENMAKE, so please do not  
 C  edit anything below these comments.  In general, you should  
 C  add or remove packages by re-running genmake with different  
 C  "-enable" and/or "-disable" options.  
   
 #ifndef PACKAGES_H  
 #define PACKAGES_H  
   
 C  Packages disabled by genmake:  
 EOF  
1150  #  The following UGLY HACK sets multiple "#undef"s and it needs to go  #  The following UGLY HACK sets multiple "#undef"s and it needs to go
1151  #  away.  On 2003-08-12, CNH, JMC, and EH3 agreed that the CPP_OPTIONS.h  #  away.  On 2003-08-12, CNH, JMC, and EH3 agreed that the CPP_OPTIONS.h
1152  #  file would eventually be split up so that all package-related #define  #  file would eventually be split up so that all package-related #define
1153  #  statements could be separated and handled only by genmake.  #  statements could be separated and handled only by genmake.
1154  names=`ls -1 "$ROOTDIR/pkg"`  names=`ls -1 "$ROOTDIR/pkg"`
1155  all_pack=  all_pack=
1156    DISABLED_PACKAGES=
1157  for n in $names ; do  for n in $names ; do
1158      if test -d "$ROOTDIR/pkg/$n" -a "x$n" != xCVS ; then      if test -d "$ROOTDIR/pkg/$n" -a "x$n" != xCVS ; then
1159          has_pack="f"          has_pack="f"
# Line 1091  for n in $names ; do Line 1165  for n in $names ; do
1165          done          done
1166          if test "x$has_pack" = xf ; then          if test "x$has_pack" = xf ; then
1167              undef=`echo "ALLOW_$n" | $AWK '{print toupper($0)}'`              undef=`echo "ALLOW_$n" | $AWK '{print toupper($0)}'`
1168              echo "#undef $undef" >> $PACKAGES_DOT_H".tmp"              DISABLED_PACKAGES="$DISABLED_PACKAGES -U$undef"
1169          fi          fi
1170      fi      fi
1171  done  done
1172  cat <<EOF >>$PACKAGES_DOT_H".tmp"  ENABLED_PACKAGES=
   
 C  Packages enabled by genmake:  
 EOF  
1173  for i in $PACKAGES ; do  for i in $PACKAGES ; do
1174      def=`echo "ALLOW_$i" | $AWK '{print toupper($0)}'`      def=`echo "ALLOW_$i" | $AWK '{print toupper($0)}'`
1175      echo "#define $def" >> $PACKAGES_DOT_H".tmp"      ENABLED_PACKAGES="$ENABLED_PACKAGES -D$def"
1176  #eh3 DEFINES="$DEFINES -D$def"  #eh3 DEFINES="$DEFINES -D$def"
1177    
1178  #EH3  WARNING :  This is an UGLY HACK that needs to be removed!!!  #EH3  WARNING :  This is an UGLY HACK that needs to be removed!!!
1179      case $i in      case $i in
1180          aim_v23)          aim_v23)
             echo "#define   ALLOW_AIM" >> $PACKAGES_DOT_H".tmp"  
1181              DEFINES="$DEFINES -DALLOW_AIM"              DEFINES="$DEFINES -DALLOW_AIM"
1182                ENABLED_PACKAGES="$ENABLED_PACKAGES -DALLOW_AIM"
1183              echo "Warning: ALLOW_AIM is set to enable aim_v23. This is REALLY ugly Jean-Michel :-)"              echo "Warning: ALLOW_AIM is set to enable aim_v23. This is REALLY ugly Jean-Michel :-)"
1184              ;;              ;;
1185      esac      esac
1186  #EH3  WARNING :  This is an UGLY HACK that needs to be removed!!!  #EH3  WARNING :  This is an UGLY HACK that needs to be removed!!!
1187    
1188  done  done
 cat <<EOF >>$PACKAGES_DOT_H".tmp"  
   
 #endif /* PACKAGES_H */  
 EOF  
   
 if test ! -f $PACKAGES_DOT_H ; then  
     mv -f $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H  
 else  
     cmp $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H  
     RETVAL=$?  
     if test "x$RETVAL" = x0 ; then  
         rm -f $PACKAGES_DOT_H".tmp"  
     else  
         mv -f $PACKAGES_DOT_H $PACKAGES_DOT_H".bak"  
         mv -f $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H  
     fi  
 fi  
1189    
1190  echo "  Adding STANDARDDIRS"  echo "  Adding STANDARDDIRS"
1191  BUILDDIR=${BUILDDIR:-.}  BUILDDIR=${BUILDDIR:-.}
# Line 1194  for i in $SOURCEDIRS ; do Line 1248  for i in $SOURCEDIRS ; do
1248      done      done
1249  done  done
1250    
 cat <<EOF > adjoint_sed  
 s/call adopen(/call adopen ( mythid,\\  
      \&           /g  
 s/call adclose(/call adclose( mythid,\\  
      \&           /g  
 s/call adread(/call adread ( mythid,\\  
      \&           /g  
 s/call adwrite(/call adwrite( mythid,\\  
      \&           /g  
   
 EOF  
   
1251  echo  echo
1252  echo "===  Creating the Makefile  ==="  echo "===  Creating the Makefile  ==="
1253  echo "  setting INCLUDES"  echo "  setting INCLUDES"
# Line 1235  for d in $alldirs ; do Line 1277  for d in $alldirs ; do
1277      for sf in $sfiles ; do      for sf in $sfiles ; do
1278          if test ! -r ".links.tmp/$sf" ; then          if test ! -r ".links.tmp/$sf" ; then
1279              if test -f "$d/$sf" ; then              if test -f "$d/$sf" ; then
1280                    case $d/$sf in
1281                      ./$PACKAGES_DOT_H)
1282                            ;;
1283                      ./AD_CONFIG.h)
1284                            ;;
1285                      ./FC_NAMEMANGLE.h)
1286                            ;;
1287                      *)
1288                            touch .links.tmp/$sf
1289                            deplist="$deplist $sf"
1290                            ;;
1291                    esac
1292                  extn=`echo $sf | $AWK -F '.' '{print $NF}'`                  extn=`echo $sf | $AWK -F '.' '{print $NF}'`
                 touch .links.tmp/$sf  
                 deplist="$deplist $sf"  
1293                  case $extn in                  case $extn in
1294                      F)                      F)
1295                          echo    " \\"  >> srclist.inc                          echo    " \\"  >> srclist.inc
# Line 1328  EXE_AD      = ${EXE_AD} Line 1380  EXE_AD      = ${EXE_AD}
1380  EXE_FTL     = ${EXE_FTL}  EXE_FTL     = ${EXE_FTL}
1381  EXE_SVD     = ${EXE_SVD}  EXE_SVD     = ${EXE_SVD}
1382    
1383    ENABLED_PACKAGES = ${ENABLED_PACKAGES}
1384    DISABLED_PACKAGES = ${DISABLED_PACKAGES}
1385    
1386  EOF  EOF
1387    
1388  #  Note: figure out some way to add Hyades JAM libraries here  #  Note: figure out some way to add Hyades JAM libraries here
# Line 1392  cat >>$MAKEFILE <<EOF Line 1447  cat >>$MAKEFILE <<EOF
1447  .SUFFIXES: .o .f .p .F .c .F90 .f90  .SUFFIXES: .o .f .p .F .c .F90 .f90
1448    
1449  all: \$(EXECUTABLE)  all: \$(EXECUTABLE)
1450  \$(EXECUTABLE): \$(OBJFILES)  \$(EXECUTABLE): links \$(OBJFILES)
1451            @echo Creating \$@ ...
1452          \$(LINK) -o \$@ \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) \$(LIBS)          \$(LINK) -o \$@ \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) \$(LIBS)
1453  depend:  depend:
1454          @make links          @make links
1455          \$(MAKEDEPEND) -o .f \$(DEFINES) \$(INCLUDES) \$(SRCFILES)          \$(MAKEDEPEND) -o .f \$(DEFINES) \$(INCLUDES) \$(SRCFILES)
1456          ${TOOLSDIR}/f90mkdepend >> \$(MAKEFILE)          \$(TOOLSDIR)/f90mkdepend >> \$(MAKEFILE)
1457    
1458  links: \$(SRCFILES) \$(CSRCFILES) \$(HEADERFILES) \$(F90SRCFILES)  links: \$(SRCFILES) \$(CSRCFILES) \$(HEADERFILES) \$(F90SRCFILES) ${PACKAGES_DOT_H} AD_CONFIG.h
1459    
1460  small_f: \$(F77FILES) \$(F90FILES)  small_f: \$(F77FILES) \$(F90FILES)
1461    
# Line 1408  output.txt: \$(EXECUTABLE) Line 1464  output.txt: \$(EXECUTABLE)
1464          @\$(EXECUTABLE) > \$@          @\$(EXECUTABLE) > \$@
1465    
1466  clean:  clean:
1467          -cat AD_CONFIG.template > AD_CONFIG.h          -rm -rf *.o *.f *.p *.f90 *.mod ${RMFILES} work.{pc,pcl} *.template
         -rm -rf *.o *.f *.p *.f90 *.mod ${RMFILES} work.{pc,pcl}  
1468  Clean:  Clean:
1469          @make clean          @make clean
1470          @make cleanlinks          @make cleanlinks
1471          -rm -f Makefile.bak genmake_state genmake_*optfile make.log          -rm -f ${PACKAGES_DOT_H} AD_CONFIG.h
1472            -rm -f Makefile.bak genmake_state genmake_*optfile genmake_warnings make.log
1473  CLEAN:  CLEAN:
1474          @make Clean          @make Clean
1475          -find \$(EXEDIR) -name "*.meta" -exec rm {} \;          -find \$(EXEDIR) -name "*.meta" -exec rm {} \;
# Line 1423  CLEAN: Line 1479  CLEAN:
1479    
1480  #eh3 Makefile: makefile  #eh3 Makefile: makefile
1481  makefile:  makefile:
1482          ${0} $@          $THIS_SCRIPT $@
1483  cleanlinks:  cleanlinks:
1484          -find . -type l -exec rm {} \;          -find . -type l -exec rm {} \;
1485    
1486    # Special targets
1487    ${PACKAGES_DOT_H}:
1488            @echo Creating \$@ ...
1489            @\$(TOOLSDIR)/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -bPACKAGES_CONFIG_H "Disabled packages:" \$(DISABLED_PACKAGES) " " "Enabled packages:" \$(ENABLED_PACKAGES) > \$@
1490    AD_CONFIG.h:
1491            @echo Creating \$@ ...
1492            @\$(TOOLSDIR)/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -bAD_CONFIG_H -UALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN -UALLOW_ECCO_OPTIMIZATION > \$@
1493    
1494  # The normal chain of rules is (  .F - .f - .o  )  # The normal chain of rules is (  .F - .f - .o  )
1495  .F.f:  .F.f:
1496          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@
# Line 1486  adtaf: ad_taf_output.f Line 1550  adtaf: ad_taf_output.f
1550  adtamc: ad_tamc_output.f  adtamc: ad_tamc_output.f
1551    
1552  ad_input_code.f: \$(AD_FILES) \$(HEADERFILES)  ad_input_code.f: \$(AD_FILES) \$(HEADERFILES)
1553            @\$(TOOLSDIR)/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -DALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN -UALLOW_ECCO_OPTIMIZATION > ad_config.template
1554          cmp ad_config.template AD_CONFIG.h || cat ad_config.template > AD_CONFIG.h          cmp ad_config.template AD_CONFIG.h || cat ad_config.template > AD_CONFIG.h
1555            -rm -f ad_config.template
1556          @make \$(F77FILES)          @make \$(F77FILES)
1557          @make \$(AD_FLOW_FILES)          @make \$(AD_FLOW_FILES)
1558          cat \$(AD_FLOW_FILES) \$(AD_FILES) > ad_input_code.f          cat \$(AD_FLOW_FILES) \$(AD_FILES) > ad_input_code.f
1559    
1560  ad_taf_output.f: ad_input_code.f  ad_taf_output.f: ad_input_code.f
1561          \$(TAF) \$(AD_TAF_FLAGS) \$(TAF_EXTRA) ad_input_code.f          \$(TAF) \$(AD_TAF_FLAGS) \$(TAF_EXTRA) ad_input_code.f
1562          cat ad_input_code_ad.f | sed -f adjoint_sed > ad_taf_output.f          cat ad_input_code_ad.f | sed -f \$(TOOLSDIR)/adjoint_sed > ad_taf_output.f
1563    
1564  adtafonly:  adtafonly:
1565          \$(TAF) \$(AD_TAF_FLAGS) \$(TAF_EXTRA) ad_input_code.f          \$(TAF) \$(AD_TAF_FLAGS) \$(TAF_EXTRA) ad_input_code.f
1566          cat ad_input_code_ad.f | sed -f adjoint_sed > ad_taf_output.f          cat ad_input_code_ad.f | sed -f \$(TOOLSDIR)/adjoint_sed > ad_taf_output.f
1567    
1568  ad_taf: ad_taf_output.o \$(OBJFILES)  ad_taf: ad_taf_output.o \$(OBJFILES)
1569          \$(LINK) -o ${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_taf_output.o \$(LIBS)          \$(LINK) -o ${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_taf_output.o \$(LIBS)
1570    
1571  ad_tamc_output.f: ad_input_code.f  ad_tamc_output.f: ad_input_code.f
1572          \$(TAMC) \$(AD_TAMC_FLAGS) \$(TAMC_EXTRA) ad_input_code.f          \$(TAMC) \$(AD_TAMC_FLAGS) \$(TAMC_EXTRA) ad_input_code.f
1573          cat ad_input_code_ad.f | sed -f adjoint_sed > ad_tamc_output.f          cat ad_input_code_ad.f | sed -f \$(TOOLSDIR)/adjoint_sed > ad_tamc_output.f
1574    
1575  ad_tamc: ad_tamc_output.o \$(OBJFILES)  ad_tamc: ad_tamc_output.o \$(OBJFILES)
1576          \$(LINK) -o ${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_tamc_output.o \$(LIBS)          \$(LINK) -o ${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_tamc_output.o \$(LIBS)
# Line 1516  ftltaf: ftl_taf_output.f Line 1582  ftltaf: ftl_taf_output.f
1582  ftltamc: ftl_tamc_output.f  ftltamc: ftl_tamc_output.f
1583    
1584  ftl_input_code.f: \$(AD_FILES) \$(HEADERFILES)  ftl_input_code.f: \$(AD_FILES) \$(HEADERFILES)
1585            @\$(TOOLSDIR)/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -UALLOW_ADJOINT_RUN -DALLOW_TANGENTLINEAR_RUN -UALLOW_ECCO_OPTIMIZATION > ftl_config.template
1586          cmp ftl_config.template AD_CONFIG.h || cat ftl_config.template > AD_CONFIG.h          cmp ftl_config.template AD_CONFIG.h || cat ftl_config.template > AD_CONFIG.h
1587            -rm -f ftl_config.template
1588          @make \$(F77FILES)          @make \$(F77FILES)
1589          @make \$(AD_FLOW_FILES)          @make \$(AD_FLOW_FILES)
1590          cat \$(AD_FLOW_FILES) \$(AD_FILES) > ftl_input_code.f          cat \$(AD_FLOW_FILES) \$(AD_FILES) > ftl_input_code.f
1591    
1592  ftl_taf_output.f: ftl_input_code.f  ftl_taf_output.f: ftl_input_code.f
1593          \$(TAF) \$(FTL_TAF_FLAGS) \$(TAF_EXTRA) ftl_input_code.f          \$(TAF) \$(FTL_TAF_FLAGS) \$(TAF_EXTRA) ftl_input_code.f
1594          cat ftl_input_code_ftl.f | sed -f adjoint_sed > ftl_taf_output.f          cat ftl_input_code_ftl.f | sed -f \$(TOOLSDIR)/adjoint_sed > ftl_taf_output.f
1595    
1596    ftltafonly:
1597            \$(TAF) \$(FTL_TAF_FLAGS) \$(TAF_EXTRA) ftl_input_code.f
1598            cat ftl_input_code_ftl.f | sed -f \$(TOOLSDIR)/adjoint_sed > ftl_taf_output.f
1599    
1600  ftl_taf: ftl_taf_output.o \$(OBJFILES)  ftl_taf: ftl_taf_output.o \$(OBJFILES)
1601          \$(LINK) -o ${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_taf_output.o \$(LIBS)          \$(LINK) -o ${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_taf_output.o \$(LIBS)
1602    
1603  ftl_tamc_output.f: ftl_input_code.f  ftl_tamc_output.f: ftl_input_code.f
1604          \$(TAMC) \$(FTL_TAMC_FLAGS) \$(TAMC_EXTRA) ftl_input_code.f          \$(TAMC) \$(FTL_TAMC_FLAGS) \$(TAMC_EXTRA) ftl_input_code.f
1605          cat ftl_input_code_ftl.f | sed -f adjoint_sed > ftl_tamc_output.f          cat ftl_input_code_ftl.f | sed -f \$(TOOLSDIR)/adjoint_sed > ftl_tamc_output.f
1606    
1607  ftl_tamc: ftl_tamc_output.o \$(OBJFILES)  ftl_tamc: ftl_tamc_output.o \$(OBJFILES)
1608          \$(LINK) -o ${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_tamc_output.o \$(LIBS)          \$(LINK) -o ${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_tamc_output.o \$(LIBS)
1609    
1610    
1611  # ... SVD ...  # ... SVD ...
1612  svd: svd_taf  svdtaf: ad_taf_output.f ftl_taf_output.f
1613  svd_taf_f: svd_taf_output.f  svdall: svd_taf
1614    
1615  svd_input_code.f: \$(SRCFILES)  svd_taf: ad_taf_output.o ftl_taf_output.o \$(OBJFILES)
1616          cmp svd_config.template AD_CONFIG.h || cat svd_config.template > AD_CONFIG.h          \$(LINK) -o mitgcmuv_svd \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_taf_output.o ftl_taf_output.o \$(LIBS)
         @make \$(F77FILES)  
         @make \$(AD_FLOW_FILES)  
         cat \$(AD_FLOW_FILES) \$(AD_FILES) > svd_input_code.f  
   
 svd_taf_output.f: svd_input_code.f  
         \$(TAF) \$(SVD_TAF_FLAGS) \$(TAF_EXTRA) svd_input_code.f  
         cat svd_input_code_ad.f | sed -f adjoint_sed > svd_taf_output.f  
   
 svd_taf: svd_taf_output.o \$(OBJFILES)  
         \$(LINK) -o ${EXE_SVD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) svd_taf_output.o \$(LIBS)  
1617    
1618    
1619  #=========================================  #=========================================
# Line 1592  printf "\n\n# DO NOT DELETE\n" >> $MAKEF Line 1654  printf "\n\n# DO NOT DELETE\n" >> $MAKEF
1654    
1655  printf "\n===  Done  ===\n"  printf "\n===  Done  ===\n"
1656    
1657  #  Write the "template" files for the adjoint builds  # Create special header files
1658  cat >AD_CONFIG.template <<EOF  $TOOLSDIR/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -bPACKAGES_CONFIG_H "Disabled packages:" $DISABLED_PACKAGES " " "Enabled packages:" $ENABLED_PACKAGES > $PACKAGES_DOT_H".tmp"
1659  C  WARNING: This file is automatically generated by genmake2 and  if test ! -f $PACKAGES_DOT_H ; then
1660  C    used by the Makefile rules.  Please DO NOT EDIT this file      mv -f $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H
1661  C    unless you are CERTAIN that you know what you are doing.  else
1662        cmp $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H
1663  #undef ALLOW_ADJOINT_RUN      RETVAL=$?
1664  #undef ALLOW_TANGENTLINEAR_RUN      if test "x$RETVAL" = x0 ; then
1665  #undef ALLOW_ECCO_OPTIMIZATION          rm -f $PACKAGES_DOT_H".tmp"
1666  EOF      else
1667  cat >ad_config.template <<EOF          mv -f $PACKAGES_DOT_H $PACKAGES_DOT_H".bak"
1668  C  WARNING: This file is automatically generated by genmake2 and          mv -f $PACKAGES_DOT_H".tmp" $PACKAGES_DOT_H
1669  C    used by the Makefile rules.  Please DO NOT EDIT this file      fi
1670  C    unless you are CERTAIN that you know what you are doing.  fi
1671    if test ! -f AD_CONFIG.h ; then
1672  #define ALLOW_ADJOINT_RUN      $TOOLSDIR/convert_cpp_cmd2defines "Warning - this file is automatically generated - do NOT edit" -UALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN -UALLOW_ECCO_OPTIMIZATION > AD_CONFIG.h
1673  #undef ALLOW_TANGENTLINEAR_RUN  fi
 #undef ALLOW_ECCO_OPTIMIZATION  
 EOF  
 cat >ftl_config.template <<EOF  
 C  WARNING: This file is automatically generated by genmake2 and  
 C    used by the Makefile rules.  Please DO NOT EDIT this file  
 C    unless you are CERTAIN that you know what you are doing.  
   
 #undef ALLOW_ADJOINT_RUN  
 #define ALLOW_TANGENTLINEAR_RUN  
 #undef ALLOW_ECCO_OPTIMIZATION  
 EOF  
 cat >svd_config.template <<EOF  
 C  WARNING: This file is automatically generated by genmake2 and  
 C    used by the Makefile rules.  Please DO NOT EDIT this file  
 C    unless you are CERTAIN that you know what you are doing.  
   
 #undef ALLOW_ADJOINT_RUN  
 #undef ALLOW_TANGENTLINEAR_RUN  
 #undef ALLOW_ECCO_OPTIMIZATION  
 EOF  
 cp AD_CONFIG.template AD_CONFIG.h  
1674    
1675    
1676  #  Write the "state" for future records  #  Write the "state" for future records

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.49

  ViewVC Help
Powered by ViewVC 1.1.22