/[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.40 by heimbach, Fri Nov 14 21:20:35 2003 UTC revision 1.41 by edhill, Thu Nov 20 00:25:43 2003 UTC
# 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 473  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 491  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 571  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 601  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 621  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 960  rm -f ./.pd_tmp Line 992  rm -f ./.pd_tmp
992  #  Search for default packages.  Note that a "$ROOTDIR/pkg/pkg_groups"  #  Search for default packages.  Note that a "$ROOTDIR/pkg/pkg_groups"
993  #  file should eventually be added so that, for convenience, one can  #  file should eventually be added so that, for convenience, one can
994  #  specify groups of packages using names like "ocean" and "atmosphere".  #  specify groups of packages using names like "ocean" and "atmosphere".
995  echo  -n "  checking default package list:  "  echo "  checking default package list:  "
996  if test "x${PDEFAULT}" = x ; then  if test "x${PDEFAULT}" = x ; then
997      for i in "." $MODS ; do      for i in "." $MODS ; do
998          if test -r $i"/packages.conf" ; then          if test -r $i"/packages.conf" ; then
# Line 973  if test "x${PDEFAULT}" = x ; then Line 1005  if test "x${PDEFAULT}" = x ; then
1005      PDEFAULT="$ROOTDIR/pkg/pkg_default"      PDEFAULT="$ROOTDIR/pkg/pkg_default"
1006  fi  fi
1007  if test "x${PDEFAULT}" = xNONE ; then  if test "x${PDEFAULT}" = xNONE ; then
1008      echo "default packages file disabled"      echo "    default packages file disabled"
1009  else  else
1010      if test ! -r $PDEFAULT ; then      if test ! -r $PDEFAULT ; then
         echo ""  
1011          echo "Warning:  can't read default packages from PDEFAULT=\"$PDEFAULT\""          echo "Warning:  can't read default packages from PDEFAULT=\"$PDEFAULT\""
1012      else      else
1013          echo "  using PDEFAULT=\"$PDEFAULT\""          echo "    using PDEFAULT=\"$PDEFAULT\""
1014          #  Strip the comments and add all the names          #  Strip the comments and add all the names
1015          def=`cat $PDEFAULT | sed -e 's/#.*$//g' | $AWK '(NF>0){print $0}'`          def=`cat $PDEFAULT | sed -e 's/#.*$//g' | $AWK '(NF>0){print $0}'`
1016          RETVAL=$?          RETVAL=$?

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

  ViewVC Help
Powered by ViewVC 1.1.22