/[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.204 by jmc, Wed Mar 10 15:49:54 2010 UTC revision 1.205 by jmc, Sun May 23 03:45:58 2010 UTC
# Line 480  get_pdepend_list()  { Line 480  get_pdepend_list()  {
480      #  strip the comments and then convert the dependency file into      #  strip the comments and then convert the dependency file into
481      #  two arrays: PNAME, DNAME      #  two arrays: PNAME, DNAME
482      cat $1 | sed -e 's/#.*$//g' \      cat $1 | sed -e 's/#.*$//g' \
483          | $AWK 'BEGIN{nn=0;} (NF>0){ for(i=2;i<=NF;i++){nn++; print "PNAME["nn"]="$1"\nDNAME["nn"]="$i} }' \          | $AWK 'BEGIN{nn=-1;} (NF>0){ for(i=2;i<=NF;i++){nn++; print "PNAME_"nn"="$1"\nDNAME_"nn"="$i}} END{print "nname="nn}' \
484          > ./.pd_tmp          > ./.pd_tmp
485        RETVAL=$?
486        if test ! "x${RETVAL}" = x0 ; then
487          echo "Error: unable to parse package dependencies -- please check PDEPEND=\"$1\""
488          exit 1
489        fi
490      . ./.pd_tmp      . ./.pd_tmp
491      rm -f ./.pd_tmp      rm -f ./.pd_tmp
492    
     printf "PNAME = "${}  
493  }  }
494    
495    
# Line 1861  THIS_SCRIPT=`echo ${0} | sed 's:'$TOOLSD Line 1865  THIS_SCRIPT=`echo ${0} | sed 's:'$TOOLSD
1865    
1866  EXECUTABLE=${EXECUTABLE:-mitgcmuv}  EXECUTABLE=${EXECUTABLE:-mitgcmuv}
1867    
1868    #  Set Standard Code Directories:
1869    if test "x$STANDARDDIRS" = xUSE_THE_DEFAULT ; then
1870        STANDARDDIRS="eesupp model"
1871    fi
1872    #  if model in Standard-Code-Dir, add eesupp (needed to compile model)
1873    echo " $STANDARDDIRS " | grep ' model ' > /dev/null 2>&1
1874    ckM=$?
1875    echo " $STANDARDDIRS " | grep ' eesupp ' > /dev/null 2>&1
1876    ckE=$?
1877    if test $ckM = 0 -a $ckE = 1 ; then
1878        STANDARDDIRS="$STANDARDDIRS eesupp"
1879    fi
1880    
1881  #  We have a special set of source files in eesupp/src which are  #  We have a special set of source files in eesupp/src which are
1882  #  generated from some template source files. We'll make them first so  #  generated from some template source files. We'll make them first so
1883  #  they appear as regular source code  #  they appear as regular source code
# Line 1911  fi Line 1928  fi
1928  echo "  getting package dependency info from  $PDEPEND"  echo "  getting package dependency info from  $PDEPEND"
1929  #  Strip the comments and then convert the dependency file into  #  Strip the comments and then convert the dependency file into
1930  #  two arrays: PNAME, DNAME  #  two arrays: PNAME, DNAME
1931  cat $PDEPEND | sed -e 's/#.*$//g' \  get_pdepend_list $PDEPEND
     | $AWK 'BEGIN{nn=-1;} (NF>0){ for(i=2;i<=NF;i++){nn++; print "PNAME_"nn"="$1"\nDNAME_"nn"="$i}} END{print "nname="nn}' \  
     > ./.pd_tmp  
 RETVAL=$?  
 if test ! "x${RETVAL}" = x0 ; then  
     echo "Error: unable to parse package dependencies -- please check PDEPEND=\"$PDEPEND\""  
     exit 1  
 fi  
 . ./.pd_tmp  
 rm -f ./.pd_tmp  
1932    
1933  #  Search for default packages.  Note that a "$ROOTDIR/pkg/pkg_groups"  #  Search for default packages.  Note that a "$ROOTDIR/pkg/pkg_groups"
1934  #  file should eventually be added so that, for convenience, one can  #  file has been added so that, for convenience, one can specify
1935  #  specify groups of packages using names like "ocean" and "atmosphere".  #  groups of packages using names like "ocean" and "atmosphere".
1936  echo "  checking default package list:  "  echo "  checking default package list:  "
1937  if test "x${PDEFAULT}" = x ; then  if test "x${PDEFAULT}" = x ; then
1938      for i in "." $MODS ; do      for i in "." $MODS ; do
# Line 1955  else Line 1963  else
1963          for i in $def ; do          for i in $def ; do
1964              PACKAGES="$PACKAGES $i"              PACKAGES="$PACKAGES $i"
1965          done          done
1966          echo "    before group expansion packages are: $PACKAGES"          echo "    before group expansion packages are:$PACKAGES"
1967          RET=1          RET=1
1968          while test $RET = 1 ; do expand_pkg_groups; RET=$?; done          while test $RET = 1 ; do expand_pkg_groups; RET=$?; done
1969          echo "    after group expansion packages are:  $PACKAGES"          echo "    after group expansion packages are: $PACKAGES"
1970      fi      fi
1971  fi  fi
1972    
1973  echo "  applying DISABLE settings"  echo "  applying DISABLE settings"
1974    echo "" > ./.tmp_pack
1975  for i in $PACKAGES ; do  for i in $PACKAGES ; do
1976      echo $i >> ./.tmp_pack      echo $i >> ./.tmp_pack
1977  done  done
# Line 2000  for i in `grep -v "-" ./.tmp_pack | sort Line 2009  for i in `grep -v "-" ./.tmp_pack | sort
2009      PACKAGES="$PACKAGES $i"      PACKAGES="$PACKAGES $i"
2010  done  done
2011  rm -f ./.tmp_pack  rm -f ./.tmp_pack
2012  echo "    packages are:  $PACKAGES"  echo "    packages are: $PACKAGES"
2013    
2014  #  Check for package MNC: if NetCDF is available, then build the MNC  #  Check for package MNC: if NetCDF is available, then build the MNC
2015  #  template files ; otherwise, delete mnc from the list of packages.  #  template files ; otherwise, delete mnc from the list of packages.
2016  echo $PACKAGES | grep ' mnc ' > /dev/null 2>&1  echo " $PACKAGES " | grep ' mnc ' > /dev/null 2>&1
2017  RETVAL=$?  RETVAL=$?
2018  if test "x$RETVAL" = x0 ; then  if test "x$RETVAL" = x0 ; then
2019      if test "x$HAVE_NETCDF" != xt ; then      if test "x$HAVE_NETCDF" != xt ; then
# Line 2039  fi Line 2048  fi
2048    
2049  #  Check for package PROFILES: if NetCDF is not available,  #  Check for package PROFILES: if NetCDF is not available,
2050  #  then delete profiles from the list of available packages.  #  then delete profiles from the list of available packages.
2051  echo $PACKAGES | grep ' profiles ' > /dev/null 2>&1  echo " $PACKAGES " | grep ' profiles ' > /dev/null 2>&1
2052  RETVAL=$?  RETVAL=$?
2053  if test "x$RETVAL" = x0 ; then  if test "x$RETVAL" = x0 ; then
2054      if test "x$HAVE_NETCDF" != xt ; then      if test "x$HAVE_NETCDF" != xt ; then
# Line 2080  while test "x$ck" != xtt ; do Line 2089  while test "x$ck" != xtt ; do
2089                  pin="t"                  pin="t"
2090              fi              fi
2091          done          done
2092            #  or in the current $STANDARDDIRS list?
2093            for p in $STANDARDDIRS ; do
2094                if test "x$p" = "x$pname" ; then pin="t" ; fi
2095            done
2096    
2097          #  Is the DNAME entry a (+) or (-) rule ?          #  Is the DNAME entry a (+) or (-) rule ?
2098          tmp="dname=\"\$DNAME_$i\""          tmp="dname=\"\$DNAME_$i\""
# Line 2132  while test "x$ck" != xtt ; do Line 2145  while test "x$ck" != xtt ; do
2145      done      done
2146      ck=$ck"t"      ck=$ck"t"
2147  done  done
2148  echo "    packages are:  $PACKAGES"  echo "    packages are: $PACKAGES"
2149  for i in $PACKAGES ; do  for i in $PACKAGES ; do
2150      adr="$ROOTDIR/pkg/$i"      adr="$ROOTDIR/pkg/$i"
2151      if test -d $adr ; then      if test -d $adr ; then
# Line 2188  for i in $PACKAGES ; do Line 2201  for i in $PACKAGES ; do
2201    
2202  done  done
2203    
2204  echo "  Adding STANDARDDIRS"  echo "  Adding STANDARDDIRS='$STANDARDDIRS'"
2205  BUILDDIR=${BUILDDIR:-.}  BUILDDIR=${BUILDDIR:-.}
 if test "x$STANDARDDIRS" = xUSE_THE_DEFAULT ; then  
     STANDARDDIRS="eesupp model"  
 fi  
2206  if test "x$STANDARDDIRS" != x ; then  if test "x$STANDARDDIRS" != x ; then
2207      for d in $STANDARDDIRS ; do      for d in $STANDARDDIRS ; do
2208          adr="$ROOTDIR/$d/src"          adr="$ROOTDIR/$d/src"
# Line 2487  for xx in "$@" ; do nw=`echo $xx | wc -w Line 2497  for xx in "$@" ; do nw=`echo $xx | wc -w
2497  done  done
2498    
2499  if test -f $MAKEFILE ; then  if test -f $MAKEFILE ; then
2500      mv -f $MAKEFILE "$MAKEFILE.bak"      mv -f $MAKEFILE "$MAKEFILE.old"
2501  fi  fi
2502  echo "  Writing makefile: $MAKEFILE"  echo "  Writing makefile: $MAKEFILE"
2503  echo "# Multithreaded + multi-processing makefile for:" > $MAKEFILE  echo "# Multithreaded + multi-processing makefile for:" > $MAKEFILE
# Line 2506  EXE_SVD=$EXECUTABLE"_svd" Line 2516  EXE_SVD=$EXECUTABLE"_svd"
2516  cat >>$MAKEFILE <<EOF  cat >>$MAKEFILE <<EOF
2517  #  #
2518  # OPTFILE="$OPTFILE"  # OPTFILE="$OPTFILE"
2519  #  #
2520  # BUILDDIR     : Directory where object files are written  # BUILDDIR     : Directory where object files are written
2521  # SOURCEDIRS   : Directories containing the source (.F) files  # SOURCEDIRS   : Directories containing the source (.F) files
2522  # INCLUDEDIRS  : Directories containing the header-source (.h) files  # INCLUDEDIRS  : Directories containing the header-source (.h) files
# Line 2526  cat >>$MAKEFILE <<EOF Line 2536  cat >>$MAKEFILE <<EOF
2536  # LIBS         : Library flags /or/ additional optimization/debugging flags  # LIBS         : Library flags /or/ additional optimization/debugging flags
2537    
2538  ROOTDIR     = ${ROOTDIR}  ROOTDIR     = ${ROOTDIR}
2539  BUILDDIR    = ${BUILDDIR}    BUILDDIR    = ${BUILDDIR}
2540  SOURCEDIRS  = ${SOURCEDIRS}  SOURCEDIRS  = ${SOURCEDIRS}
2541  INCLUDEDIRS = ${INCLUDEDIRS}  INCLUDEDIRS = ${INCLUDEDIRS}
2542  EXEDIR      = ${EXEDIR}  EXEDIR      = ${EXEDIR}
# Line 2607  rm -f F77srclist.tmp nonADF77srclist.tmp Line 2617  rm -f F77srclist.tmp nonADF77srclist.tmp
2617    
2618  echo >> $MAKEFILE  echo >> $MAKEFILE
2619    
2620  # add definitions for preprocessed sources  # add definitions for preprocessed sources
2621  # and note that not all systems allow case sensitive extensions  # and note that not all systems allow case sensitive extensions
2622  # hence the $FS and $FS90 here.  # hence the $FS and $FS90 here.
2623  # for fixed format f90 files we use ff90 or FF90 resp  # for fixed format f90 files we use ff90 or FF90 resp
2624  # but these are not expected to be the original source files  # but these are not expected to be the original source files
2625    
2626  echo 'F77_PP_SRC_FILES = $(F77_SRC_FILES:.F=.'$FS')'      >> $MAKEFILE  echo 'F77_PP_SRC_FILES = $(F77_SRC_FILES:.F=.'$FS')'      >> $MAKEFILE
# Line 2657  Clean: Line 2667  Clean:
2667          @make cleanlinks          @make cleanlinks
2668          -rm -f \$(SPECIAL_FILES)          -rm -f \$(SPECIAL_FILES)
2669          -rm -f genmake_state genmake_*optfile genmake_warnings genmake_errors          -rm -f genmake_state genmake_*optfile genmake_warnings genmake_errors
2670          -rm -f make.log run.log f90mkdepend.log *.bak          -rm -f make.log run.log f90mkdepend.log *.bak "$MAKEFILE.old"
2671          -rm -f taf_command taf_output taf_ad.log taf_ad_flow.log          -rm -f taf_command taf_output taf_ad.log taf_ad_flow.log
2672  CLEAN:  CLEAN:
2673          @make Clean          @make Clean
# Line 2699  if test "x$EMBED_SRC" = xt ; then Line 2709  if test "x$EMBED_SRC" = xt ; then
2709    
2710  decode_files.o : EMBEDDED_FILES.h  decode_files.o : EMBEDDED_FILES.h
2711    
2712  ##  \$(F77_PP_SRC_FILES)  ##  \$(F77_PP_SRC_FILES)
2713  all_fF.tar.gz : \$(SPECIAL_FILES) \$(F77_SRC_FILES) \$(C_SRC_FILES) \$(H_SRC_FILES) \$(F90_SRC_FILES) \$(F77_PP_SRC_FILES) Makefile  all_fF.tar.gz : \$(SPECIAL_FILES) \$(F77_SRC_FILES) \$(C_SRC_FILES) \$(H_SRC_FILES) \$(F90_SRC_FILES) \$(F77_PP_SRC_FILES) Makefile
2714          @echo Creating \$@ ...          @echo Creating \$@ ...
2715          -tar -hcf all_fF.tar \$(SPECIAL_FILES) \$(F77_SRC_FILES) \$(C_SRC_FILES) \$(H_SRC_FILES) \$(F90_SRC_FILES) \$(F77_PP_SRC_FILES) Makefile          -tar -hcf all_fF.tar \$(SPECIAL_FILES) \$(F77_SRC_FILES) \$(C_SRC_FILES) \$(H_SRC_FILES) \$(F90_SRC_FILES) \$(F77_PP_SRC_FILES) Makefile

Legend:
Removed from v.1.204  
changed lines
  Added in v.1.205

  ViewVC Help
Powered by ViewVC 1.1.22