/[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.238 by jmc, Tue Aug 28 21:11:22 2012 UTC revision 1.252 by jmc, Mon Jul 22 19:11:31 2013 UTC
# Line 174  EOF Line 174  EOF
174  test_for_package_in_cpp_options() {  test_for_package_in_cpp_options() {
175      cpp_options=$1      cpp_options=$1
176      pkg=$2      pkg=$2
177      test_for_string_in_file $cpp_options "^[ ]*#define.*ALLOW_$pkg[ ]"      test_for_string_in_file $cpp_options "^ *# *define *\<ALLOW_$pkg\>"
178      test_for_string_in_file $cpp_options "^[ ]*#undef.*ALLOW_$pkg[ ]"      test_for_string_in_file $cpp_options "^ *# *undef *\<ALLOW_$pkg\>"
179      test_for_string_in_file $cpp_options "^[ ]*#define.*DISABLE_$pkg[ ]"      test_for_string_in_file $cpp_options "^ *# *define *\<DISABLE_$pkg\>"
180      test_for_string_in_file $cpp_options "^[ ]*#undef.*DISABLE_$pkg[ ]"      test_for_string_in_file $cpp_options "^ *# *undef *\<DISABLE_$pkg\>"
     test_for_string_in_file $cpp_options "^[ ]*#define.*ALLOW_$pkg$"  
     test_for_string_in_file $cpp_options "^[ ]*#undef.*ALLOW_$pkg$"  
     test_for_string_in_file $cpp_options "^[ ]*#define.*DISABLE_$pkg$"  
     test_for_string_in_file $cpp_options "^[ ]*#undef.*DISABLE_$pkg$"  
181  }  }
182    
183  # Search for particular CPP #cmds associated with MPI  # Search for particular CPP #cmds associated with MPI
184  # usage: test_for_mpi_in_cpp_eeoptions CPP_file  # usage: test_for_mpi_in_cpp_eeoptions CPP_file
185  test_for_mpi_in_cpp_eeoptions() {  test_for_mpi_in_cpp_eeoptions() {
186      cpp_options=$1      cpp_options=$1
187      test_for_string_in_file $cpp_options "^[ ]*#define.*ALLOW_USE_MPI[ ]"      test_for_string_in_file $cpp_options "^ *# *define *\<ALLOW_USE_MPI\>"
188      test_for_string_in_file $cpp_options "^[ ]*#undef.*ALLOW_USE_MPI[ ]"      test_for_string_in_file $cpp_options "^ *# *undef *\<ALLOW_USE_MPI\>"
     test_for_string_in_file $cpp_options "^[ ]*#define.*ALWAYS_USE_MPI[ ]"  
     test_for_string_in_file $cpp_options "^[ ]*#undef.*ALWAYS_USE_MPI[ ]"  
     test_for_string_in_file $cpp_options "^[ ]*#define.*ALLOW_USE_MPI$"  
     test_for_string_in_file $cpp_options "^[ ]*#undef.*ALLOW_USE_MPI$"  
     test_for_string_in_file $cpp_options "^[ ]*#define.*ALWAYS_USE_MPI$"  
     test_for_string_in_file $cpp_options "^[ ]*#undef.*ALWAYS_USE_MPI$"  
189  }  }
190    
191  # Search for particular string in a file. Return 1 if detected, 0 if not  # Search for particular string in a file. Return 1 if detected, 0 if not
# Line 203  test_for_mpi_in_cpp_eeoptions() { Line 193  test_for_mpi_in_cpp_eeoptions() {
193  test_for_string_in_file() {  test_for_string_in_file() {
194      file=$1      file=$1
195      strng=$2      strng=$2
196      grep -i "$strng" $file > /dev/null 2>&1      grep "$strng" $file > /dev/null 2>&1
197      RETVAL=$?      RETVAL=$?
198      if test "x${RETVAL}" = x0 ; then      if test "x${RETVAL}" = x0 ; then
199          printf "Error: In $file there is an illegal line: "          printf "Error: In $file there is an illegal line: "
# Line 334  look_for_makedepend()  { Line 324  look_for_makedepend()  {
324      #      #
325      #    1) a makedepend implementation shipped with the cyrus-imapd      #    1) a makedepend implementation shipped with the cyrus-imapd
326      #       package:  ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/      #       package:  ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/
327      #      #    2) a local tools/xmakedepend shell script
     #    2) a known-buggy xmakedpend shell script  
328      #      #
329      #  So the choices are, in order:      #  So the choices are, in order:
     #  
330      #    1) use the user-specified program      #    1) use the user-specified program
331      #    2) use a system-wide default      #    2) use the local xmakedepend script (get all dependencies, but slower)
332      #    3) locally build and use the cyrus implementation      #    3) use a system-wide default
333      #    4) fall back to the buggy local xmakedpend script      #    4) locally build and use the cyrus makedepend
334        #             (faster, but can miss some dependencies)
335      #      #
336      echo >> $LOGFILE      echo >> $LOGFILE
337      echo "running: look_for_makedepend()" >> $LOGFILE      echo "running: look_for_makedepend()" >> $LOGFILE
# Line 353  look_for_makedepend()  { Line 342  look_for_makedepend()  {
342              build_cyrus_makedepend              build_cyrus_makedepend
343              RETVAL=$?              RETVAL=$?
344              if test "x$RETVAL" != x0 ; then              if test "x$RETVAL" != x0 ; then
345                  echo "WARNING: unable to build cyrus-makedepend. Try 'makedepend'"                  echo "WARNING: unable to build cyrus-makedepend. Try other 'makedepend'"
346                  MAKEDEPEND=                  MAKEDEPEND=
347              fi              fi
348          else          else
# Line 366  look_for_makedepend()  { Line 355  look_for_makedepend()  {
355          fi          fi
356      fi      fi
357      if test "x${MAKEDEPEND}" = x ; then      if test "x${MAKEDEPEND}" = x ; then
         which makedepend > /dev/null 2>&1  
         RV0=$?  
358          test -f $MAKEFILE  &&  mv -f $MAKEFILE $MAKEFILE".tst"          test -f $MAKEFILE  &&  mv -f $MAKEFILE $MAKEFILE".tst"
359          #  echo 'MAKEFILE="'$MAKEFILE'"'          #  echo 'MAKEFILE="'$MAKEFILE'"'
360          cat <<EOF >> $MAKEFILE          cat <<EOF >> $MAKEFILE
# Line 383  EOF Line 370  EOF
370        stop        stop
371        end        end
372  EOF  EOF
373          makedepend -f $MAKEFILE genmake_tc.f > /dev/null 2>&1          $ROOTDIR/tools/xmakedepend -f $MAKEFILE genmake_tc.f > /dev/null 2>&1
374          RV1=$?          RV1=$?
375            which makedepend > /dev/null 2>&1
376            RV2=$?
377            if test "x${RV2}" = x0 ; then
378                makedepend -f $MAKEFILE genmake_tc.f > /dev/null 2>&1
379                RV3=$? ; loc_msg='not working.'
380            else RV3=$RV2 ; loc_msg='not found.'
381            fi
382          test -f $MAKEFILE  &&  rm -f $MAKEFILE          test -f $MAKEFILE  &&  rm -f $MAKEFILE
383          test -f $MAKEFILE".tst"  &&  mv -f $MAKEFILE".tst" $MAKEFILE          test -f $MAKEFILE".tst"  &&  mv -f $MAKEFILE".tst" $MAKEFILE
384          if test "x${RV0}${RV1}" = x00 ; then          echo "  check makedepend (local: $RV1, system: $RV2, $RV3)"
385            if test "x${RV1}" = x0 ; then
386                MAKEDEPEND='$(TOOLSDIR)/xmakedepend'
387                echo " --> set MAKEDEPEND=${MAKEDEPEND}" >> $LOGFILE
388            elif test "x${RV3}" = x0 ; then
389                echo "    local tools/xmakedepend not working. Use system-default makedepend"
390              MAKEDEPEND=makedepend              MAKEDEPEND=makedepend
391              echo " --> set MAKEDEPEND=${MAKEDEPEND}" >> $LOGFILE              echo " --> set MAKEDEPEND=${MAKEDEPEND}" >> $LOGFILE
392          else          else
393              echo "    system-default makedepend not found. Try to build cyrus-makedepend"              echo "    local tools/xmakedepend not working; system-default makedepend $loc_msg"
394                echo -n "    Try to build cyrus-makedepend ..."
395              #  Try to build the cyrus implementation              #  Try to build the cyrus implementation
396              build_cyrus_makedepend              build_cyrus_makedepend
397              RETVAL=$?              RETVAL=$?
398              if test "x$RETVAL" != x0 ; then              if test "x$RETVAL" = x0 ; then
399                  echo "WARNING: unable to build cyrus-makedepend. Use local xmakedepend"                  echo "  Works"
400                  MAKEDEPEND='$(TOOLSDIR)/xmakedepend'              else
401                  echo " --> set MAKEDEPEND=${MAKEDEPEND}" >> $LOGFILE                  echo "  Fails" ; echo "" >> $LOGFILE
402                    echo "ERROR: no working makedepend found ; look_for_makedepend FAILED" | tee -a $LOGFILE
403                    echo ""
404                    exit -1
405                    return
406              fi              fi
407          fi          fi
408      fi      fi
# Line 598  EOF Line 602  EOF
602      fi      fi
603  }  }
604    
605    #  Do a local copy of MPI headers files (in local dir ./mpi_headers/) after
606    #  checking for additional included headers (in case of chain of included header)
607    mpi_headers_do_local_copy() {
608    
609        dBug=0
610        #----- check for additional headers (chain of included headers)
611        listIni=$MPI_HEADER_FILES
612        echo $listIni | grep "\<mpif.h\>" > /dev/null 2>&1
613        outp=$?
614        #- always check mpif.h (the only mpi-header included in standard MITgcm code)
615        if test $outp != 0 ; then listIni="mpif.h $listIni" ; fi
616        if test $dBug = 1 ; then echo "listIni='$listIni'" ; fi
617        doCheck=1 ; list2copy='' ; list2check=$listIni
618        while test $doCheck = 1 ; do
619            newList=''
620            for i in $list2check ; do
621             if test -f $MPIINCLUDEDIR/$i ; then
622                newInc=`grep '^ *include ' $MPIINCLUDEDIR/$i | \
623                    sed -e 's/^ *include //' -e 's/\!.*$//' -e "s/'//g"  -e 's/\"//g'`
624               if test $dBug = 1 ; then echo -n "checking $i : newInc='$newInc'" ; fi
625               for j in $newInc ; do
626                 echo $listIni $list2copy $newList | grep "\<$j\>" > /dev/null 2>&1
627                 outp=$?
628                 if test $outp != 0 ; then
629                    if test $dBug = 1 ; then echo -n " ; adding $j" ; fi
630                    newList="$newList $j"
631                 fi
632               done
633               if test $dBug = 1 ; then echo "" ; fi
634             fi
635            done
636            if test "x$newList" = x ; then doCheck=0
637            else list2check=$newList ; list2copy="$list2copy $newList"
638            fi
639        done
640        list2copy="$MPI_HEADER_FILES $list2copy"
641        if test $dBug = 1 ; then echo "list2copy='$list2copy'" ; fi
642        #----- make local copy and update LOCAL_MPI_HEADERS (if not already set)
643        mkListInc=0
644        for i in $list2copy ; do
645            if test -f $MPIINCLUDEDIR/$i ; then
646                cp -p $MPIINCLUDEDIR/$i ./mpi_headers
647                if test $i = 'mpif.h' ; then
648                    perl -i -pe 's/MPI_DISPLACEMENT_CURRENT=-1_8/MPI_DISPLACEMENT_CURRENT=-1/g' mpi_headers/mpif.h
649                fi
650                if test $mkListInc = 1 ; then
651                    LOCAL_MPI_HEADERS="$LOCAL_MPI_HEADERS ./mpi_headers/$i"
652                fi
653                if test "x$LOCAL_MPI_HEADERS" = x ; then
654                    LOCAL_MPI_HEADERS="./mpi_headers/$i" ; mkListInc=1
655                fi
656            fi
657        done
658    }
659    
660  #  Parse the package dependency information  #  Parse the package dependency information
661  get_pdepend_list()  {  get_pdepend_list()  {
662    
# Line 917  check_netcdf_libs()  { Line 976  check_netcdf_libs()  {
976        program fgennc        program fgennc
977  #include "netcdf.inc"  #include "netcdf.inc"
978  EOF  EOF
979      if test ! "x$MPI" = x ; then     #if test ! "x$MPI" = x ; then
980          echo '#include "mpif.h"' >> genmake_tnc.F     #    echo '#include "mpif.h"' >> genmake_tnc.F
981      fi     #fi
982      cat <<EOF >> genmake_tnc.F      cat <<EOF >> genmake_tnc.F
983        integer iret, ncid, xid        integer iret, ncid, xid
984        iret = nf_create('genmake_tnc.nc', NF_CLOBBER, ncid)        iret = nf_create('genmake_tnc.nc', NF_CLOBBER, ncid)
# Line 1102  EOF Line 1161  EOF
1161      echo " --> set HAVE_LAPACK='$HAVE_LAPACK'" >> $LOGFILE      echo " --> set HAVE_LAPACK='$HAVE_LAPACK'" >> $LOGFILE
1162  }  }
1163    
1164    check_HAVE_FLUSH()  {
1165        if test ! "x$SKIP_CHECK_FLUSH" = x ; then
1166            return
1167        fi
1168        echo >> $LOGFILE
1169        echo "running: check_HAVE_FLUSH()" >> $LOGFILE
1170        cat <<EOF > genmake_tflsh.$FS
1171          program fgenflsh
1172          integer iounit
1173          character*9 fname
1174          iounit = 26
1175          fname = 'tmp.tflsh'
1176          open(iounit,FILE=fname,STATUS='unknown')
1177          write(iounit,*) 'genmake_tflsh: hello'
1178          call flush(iounit)
1179          close(iounit)
1180          end
1181    EOF
1182        echo "===  genmake_tflsh.$FS  >>>" > genmake_tflsh.log
1183        cat genmake_tflsh.$FS >> genmake_tflsh.log
1184        echo "<<<  genmake_tflsh.$FS  ===" >> genmake_tflsh.log
1185    
1186        echo "$FC $FFLAGS $FOPTIM -c genmake_tflsh.$FS  \ " >> genmake_tflsh.log
1187        echo "  &&  $LINK $FFLAGS $FOPTIM -o genmake_tflsh.o $LIBS" >> genmake_tflsh.log
1188        $FC $FFLAGS $FOPTIM -c genmake_tflsh.$FS >> genmake_tflsh.log 2>&1  \
1189            &&  $LINK $FFLAGS $FOPTIM -o genmake_tflsh genmake_tflsh.o $LIBS >> genmake_tflsh.log 2>&1
1190        RET_COMPILE=$?
1191    
1192        if test "x$RET_COMPILE" = x0 ; then
1193            HAVE_FLUSH=t
1194            #cat genmake_tflsh.log >> $LOGFILE
1195            echo "  check_HAVE_FLUSH: successful" >> $LOGFILE
1196        else
1197            HAVE_FLUSH=f
1198            cat genmake_tflsh.log >> $LOGFILE
1199        fi
1200        rm -f genmake_tflsh*
1201        echo " --> set HAVE_FLUSH='$HAVE_FLUSH'" >> $LOGFILE
1202    }
1203    
1204  ###############################################################################  ###############################################################################
1205  #   Sequential part of script starts here  #   Sequential part of script starts here
# Line 1159  GSL= Line 1257  GSL=
1257  DEVEL=  DEVEL=
1258  HAVE_TEST_L=  HAVE_TEST_L=
1259    
1260    # comment this line out to enable lapack test
1261    SKIP_LAPACK_CHECK=t
1262    
1263  # DEFINES checked by test compilation or command-line  # DEFINES checked by test compilation or command-line
1264  HAVE_SYSTEM=  HAVE_SYSTEM=
1265  HAVE_FDATE=  HAVE_FDATE=
# Line 1170  HAVE_NETCDF= Line 1271  HAVE_NETCDF=
1271  HAVE_ETIME=  HAVE_ETIME=
1272  IGNORE_TIME=  IGNORE_TIME=
1273  HAVE_LAPACK=  HAVE_LAPACK=
1274    HAVE_FLUSH=
1275    
1276  MODS=  MODS=
1277  TOOLSDIR=  TOOLSDIR=
# Line 1215  FTL_TAF_FLAGS= Line 1317  FTL_TAF_FLAGS=
1317  SVD_TAMC_FLAGS=  SVD_TAMC_FLAGS=
1318  TAMC_EXTRA=  TAMC_EXTRA=
1319    
1320    DIVA=
1321    MPIINCLUDEDIR=
1322    MPI_HEADER_FILES=
1323    LOCAL_MPI_HEADERS=
1324    
1325  #  The following state can be set directly by command-line switches  #  The following state can be set directly by command-line switches
1326  gm_s1="ROOTDIR STANDARDDIRS MODS PKG_DEPEND PKG_GROUPS DISABLE ENABLE"  gm_s1="ROOTDIR STANDARDDIRS MODS PKG_DEPEND PKG_GROUPS DISABLE ENABLE"
1327  gm_s2="PLATFORM OPTFILE MAKE MAKEFILE MAKEDEPEND FC CC MPI OMP USE_R4"  gm_s2="PLATFORM OPTFILE MAKE MAKEFILE MAKEDEPEND FC CC MPI OMP USE_R4"
# Line 1223  gm_s3="FEXTRAFLAGS IEEE DEVEL GSL TS PAP Line 1330  gm_s3="FEXTRAFLAGS IEEE DEVEL GSL TS PAP
1330  #  The following state is not directly set by command-line switches  #  The following state is not directly set by command-line switches
1331  gm_s4="LN S64 LINK PACKAGES INCLUDES FFLAGS FOPTIM"  gm_s4="LN S64 LINK PACKAGES INCLUDES FFLAGS FOPTIM"
1332  gm_s5="CFLAGS LIBS KPP KFLAGS1 KFLAGS2 KPPFILES NOOPTFILES NOOPTFLAGS"  gm_s5="CFLAGS LIBS KPP KFLAGS1 KFLAGS2 KPPFILES NOOPTFILES NOOPTFLAGS"
1333  gm_s6="TOOLSDIR SOURCEDIRS INCLUDEDIRS EXEDIR EXECUTABLE EXEHOOK"  gm_s6="PWD TOOLSDIR SOURCEDIRS INCLUDEDIRS EXEDIR EXECUTABLE EXEHOOK"
1334  gm_s7="PWD THISHOST THISUSER THISDATE THISVER MACHINE"  gm_s7="THISHOST THISUSER THISDATE THISVER MACHINE FC_NAMEMANGLE"
1335  gm_s8="FC_NAMEMANGLE HAVE_NETCDF HAVE_SYSTEM HAVE_FDATE HAVE_ETIME HAVE_LAPACK"  gm_s8="HAVE_NETCDF HAVE_SYSTEM HAVE_FDATE HAVE_ETIME HAVE_LAPACK HAVE_FLUSH"
1336    
1337  #  The following are all related to adjoint/tangent-linear stuff  #  The following are all related to adjoint/tangent-linear stuff
1338  gm_s10="AUTODIFF_PKG_USED AD_OPTFILE TAMC TAF AD_TAMC_FLAGS AD_TAF_FLAGS"  gm_s10="AUTODIFF_PKG_USED AD_OPTFILE TAMC TAF AD_TAMC_FLAGS AD_TAF_FLAGS"
1339  gm_s11="FTL_TAMC_FLAGS FTL_TAF_FLAGS SVD_TAMC_FLAGS SVD_TAF_FLAGS"  gm_s11="FTL_TAMC_FLAGS FTL_TAF_FLAGS SVD_TAMC_FLAGS SVD_TAF_FLAGS"
1340  gm_s12="TAF_EXTRA TAMC_EXTRA"  gm_s12="TAF_EXTRA TAMC_EXTRA DIVA MPIINCLUDEDIR MPI_HEADER_FILES"
1341    
1342  gm_state="COMMANDL $gm_s1 $gm_s2 $gm_s3 $gm_s4 $gm_s5 $gm_s6 $gm_s7 $gm_s8"  gm_state="COMMANDL $gm_s1 $gm_s2 $gm_s3 $gm_s4 $gm_s5 $gm_s6 $gm_s7 $gm_s8"
1343  gm_state="$gm_state $gm_s10 $gm_s11 $gm_s12"  gm_state="$gm_state $gm_s10 $gm_s11 $gm_s12"
# Line 1668  check_for_broken_Ff Line 1775  check_for_broken_Ff
1775    
1776  if test ! "x$MPI" = x ; then  if test ! "x$MPI" = x ; then
1777        echo "  Turning on MPI cpp macros"        echo "  Turning on MPI cpp macros"
1778        DEFINES="$DEFINES -DALLOW_USE_MPI -DALWAYS_USE_MPI"        DEFINES="$DEFINES -DALLOW_USE_MPI"
1779    #- To compile code older than checkpoint63s (2012/09/05), un-comment the following line:
1780    #     DEFINES="$DEFINES -DALWAYS_USE_MPI"
1781  fi  fi
1782  if test ! "x$OMP" = x ; then  if test ! "x$OMP" = x ; then
1783        echo "  Add OMPFLAG and turn on OpenMP cpp macros"        echo "  Add OMPFLAG and turn on OpenMP cpp macros"
# Line 1893  if test "x$HAVE_LAPACK" != x ; then Line 2002  if test "x$HAVE_LAPACK" != x ; then
2002  else  else
2003      echo "no"      echo "no"
2004  fi  fi
 DEFINES="$DEFINES $IGNORE_TIME"  
2005    
2006    printf "  Can we call FLUSH intrinsic subroutine...  "
2007    check_HAVE_FLUSH
2008    if test "x$HAVE_FLUSH" = xt ; then
2009        DEFINES="$DEFINES -DHAVE_FLUSH"
2010        echo "yes"
2011    else
2012        echo "no"
2013    fi
2014    
2015    DEFINES="$DEFINES $IGNORE_TIME"
2016  if test "x$EMBED_SRC" = xt ; then  if test "x$EMBED_SRC" = xt ; then
2017      build_embed_encode      build_embed_encode
2018  fi  fi
# Line 2440  for i in $INCLUDEDIRS ; do Line 2558  for i in $INCLUDEDIRS ; do
2558      fi      fi
2559  done  done
2560    
2561  if test ! "x$DIVA" = x ; then  if test ! "x$DIVA" = x -a ! "x$MPI" = x ; then
2562      echo "  Creating the pseudo-MPI include directory"    if test ! "x$MPIINCLUDEDIR" = x ; then
2563      INCLUDES="-I./mpi_headers $INCLUDES"      if test -d $MPIINCLUDEDIR ; then
2564      rm -rf ./mpi_headers          echo "  Creating the pseudo-MPI include directory"
2565      mkdir -p ./mpi_headers          INCLUDES="-I./mpi_headers $INCLUDES"
2566            rm -rf ./mpi_headers
2567      if test "x$MPIINCLUDEDIR" = x ; then          mkdir -p ./mpi_headers
2568          if test "x$MPIHOME" = x ; then          #  Do a local copy of MPI headers files (in local dir ./mpi_headers/) after
2569              MPIHOME='/usr'          #   checking for additional included headers (in case of chain of included
2570          fi          #   header); also set LOCAL_MPI_HEADERS (if not already set)
2571          MPIINCLUDEDIR='$MPIHOME/include'          mpi_headers_do_local_copy
     fi  
   
     if test -r $MPIINCLUDEDIR/mpif.h ; then  
         for i in $MPI_HEADER_FILES; do  
             cp -p $MPIINCLUDEDIR/$i ./mpi_headers  
         done  
   
         perl -i -pe 's/MPI_DISPLACEMENT_CURRENT=-1_8/MPI_DISPLACEMENT_CURRENT=-1/g' mpi_headers/mpif.h  
2572      else      else
2573          echo " We cannot create a copy of mpif.h!"          echo "WARNING: MPIINCLUDEDIR='$MPIINCLUDEDIR' is not a dir"
2574            echo "WARNING: ==> cannot create pseudo-MPI include directory"
2575  #       exit -1  #       exit -1
2576      fi      fi
2577      fi
2578  fi  fi
2579    
2580  echo "  Determining the list of source and include files"  echo "  Determining the list of source and include files"
# Line 2492  if test "x$OPENAD" != x ; then Line 2604  if test "x$OPENAD" != x ; then
2604      OAD_DONT_TRANSFORM="/dev/null"      OAD_DONT_TRANSFORM="/dev/null"
2605      OAD_KEEP_ORIGINAL="/dev/null"      OAD_KEEP_ORIGINAL="/dev/null"
2606      OAD_CB2M_FILES="/dev/null"      OAD_CB2M_FILES="/dev/null"
2607        OADTOOLS="$TOOLSDIR/OAD_support"
2608      echo "  looking for dontCompile file:  "      echo "  looking for dontCompile file:  "
2609      for i in "." $MODS ; do      for i in "." $MODS ; do
2610          if test -r $i"/dontCompile" ; then          if test -r $i"/dontCompile" ; then
# Line 2699  INCLUDEDIRS = ${INCLUDEDIRS} Line 2812  INCLUDEDIRS = ${INCLUDEDIRS}
2812  EXEDIR      = ${EXEDIR}  EXEDIR      = ${EXEDIR}
2813  EXECUTABLE  = \$(EXEDIR)/${EXECUTABLE}  EXECUTABLE  = \$(EXEDIR)/${EXECUTABLE}
2814  TOOLSDIR    = ${TOOLSDIR}  TOOLSDIR    = ${TOOLSDIR}
2815    OADTOOLS    = ${OADTOOLS}
2816    
2817  #eh3  new defines for the adjoint work  #eh3  new defines for the adjoint work
2818  AUTODIFF    = ${ROOTDIR}/pkg/autodiff  AUTODIFF    = ${ROOTDIR}/pkg/autodiff
# Line 2719  else Line 2833  else
2833      echo "EMBEDDED_FILES = " >>$MAKEFILE      echo "EMBEDDED_FILES = " >>$MAKEFILE
2834  fi  fi
2835    
2836    # extract default cpp search path so we can pass it to makedepend
2837    CPPINCLUDES=`cat /dev/null | $CPP -v 2>&1 | awk '/^End of search/{f=0}!/^\#/{if(f){printf " -I%s", $1;}}/^\#include "..." search start/{f=1}'`
2838    
2839  cat >>$MAKEFILE <<EOF  cat >>$MAKEFILE <<EOF
2840  # Unix ln (link)  # Unix ln (link)
2841  LN = ${LN}  LN = ${LN}
 # C preprocessor  
 CPP = cat \$< | ${S64} | ${CPP}  
2842  # Dependency generator  # Dependency generator
2843  MAKEDEPEND = ${MAKEDEPEND}  MAKEDEPEND = ${MAKEDEPEND}
2844  # Special preprocessor (KAP on DECs, FPP on Crays)  # Special preprocessor (KAP on DECs, FPP on Crays)
# Line 2741  LINK = ${LINK} ${LDADD} Line 2856  LINK = ${LINK} ${LDADD}
2856  DEFINES = ${DEFINES}  DEFINES = ${DEFINES}
2857  # Includes for CPP  # Includes for CPP
2858  INCLUDES = ${INCLUDES}  INCLUDES = ${INCLUDES}
2859    # default CPP includes for makedepend
2860    CPPINCLUDES = ${CPPINCLUDES}
2861  # Flags for KPP  # Flags for KPP
2862  KFLAGS1 = ${KFLAGS1}  KFLAGS1 = ${KFLAGS1}
2863  KFLAGS2 = ${KFLAGS2}  KFLAGS2 = ${KFLAGS2}
# Line 2806  fwd_exe_target: Line 2923  fwd_exe_target:
2923    
2924  depend:  depend:
2925          @\$(MAKE) -f \$(MAKEFILE) links          @\$(MAKE) -f \$(MAKEFILE) links
2926          \$(MAKEDEPEND) -f \$(MAKEFILE) -o .$FS \$(DEFINES) \$(INCLUDES) \$(F77_SRC_FILES)          \$(MAKEDEPEND) -f \$(MAKEFILE) -o .$FS \$(DEFINES) \$(INCLUDES) \$(CPPINCLUDES) \$(F77_SRC_FILES)
2927          \$(TOOLSDIR)/f90mkdepend >> \$(MAKEFILE)          \$(TOOLSDIR)/f90mkdepend >> \$(MAKEFILE)
2928          -rm -f makedepend.out          -rm -f makedepend.out
2929    
# Line 2839  Clean: Line 2956  Clean:
2956          @\$(MAKE) -f \$(MAKEFILE) cleanlinks          @\$(MAKE) -f \$(MAKEFILE) cleanlinks
2957          -rm -f \$(SPECIAL_FILES) f90mkdepend.log $MAKEFILE.old          -rm -f \$(SPECIAL_FILES) f90mkdepend.log $MAKEFILE.old
2958          -rm -f taf_command taf_output taf_ad.log taf_ad_flow.log taf_ftl.log          -rm -f taf_command taf_output taf_ad.log taf_ad_flow.log taf_ftl.log
         -rm -f genmake_warnings genmake_errors make.log  
2959    
2960  # remove also the executable, files that "genmake2" generates (except Makefile)  # remove also the executable, files that "genmake2" generates (except Makefile)
2961  #         and output from a run (plus log files from testreport)  #         and output from a run (plus log files from testreport)
# Line 2848  CLEAN: Line 2964  CLEAN:
2964          -rm -f \$(EXECUTABLE) \$(EXE_AD) \$(EXE_FTL) *.bak          -rm -f \$(EXECUTABLE) \$(EXE_AD) \$(EXE_FTL) *.bak
2965          -rm -f $LOGFILE genmake_state genmake_*optfile          -rm -f $LOGFILE genmake_state genmake_*optfile
2966          -rm -f SIZE.h.mpi genmake.tr_log make.tr_log          -rm -f SIZE.h.mpi genmake.tr_log make.tr_log
2967            -rm -rf mpi_headers mnc_test_*
2968          -find \$(EXEDIR) -name "*.meta" -exec rm {} \;          -find \$(EXEDIR) -name "*.meta" -exec rm {} \;
2969          -find \$(EXEDIR) -name "*.data" -exec rm {} \;          -find \$(EXEDIR) -name "*.data" -exec rm {} \;
2970          -find \$(EXEDIR) -name "fort.*" -exec rm {} \;          -find \$(EXEDIR) -name "fort.*" -exec rm {} \;
2971          -rm -f *.txt STD* *diagnostics.log datetime          -rm -f *.txt STDOUT.* STDERR.* *diagnostics.log *.[0-9][0-9][0-9][0-9].log
2972            -rm -f datetime costfinal divided.ctrl snapshot* output_adm.txt.diva_*
2973          -rm -f *_MIT_CE_000.opt0000 costfunction*0000          -rm -f *_MIT_CE_000.opt0000 costfunction*0000
2974          -rm -rf mnc_test_*          -rm -f oad_cp.000.[0-9][0-9][0-9][0-9][0-9]
2975    
2976  makefile:  makefile:
2977          $THIS_SCRIPT $G2ARGS          $THIS_SCRIPT $G2ARGS
# Line 2906  cat >>$MAKEFILE <<EOF Line 3024  cat >>$MAKEFILE <<EOF
3024  ## This nullifies any default implicit rules concerning these two file types:  ## This nullifies any default implicit rules concerning these two file types:
3025  ## %.o : %.F  ## %.o : %.F
3026    
3027    # C preprocessing and replacing the _d in constants:
3028    CPPCMD = cat \$< | ${CPP} \$(DEFINES) \$(INCLUDES) | ${S64}
3029    
3030  .F.$FS:  .F.$FS:
3031          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@          \$(CPPCMD)  > \$@
3032  .$FS.o:  .$FS.o:
3033          \$(FC) \$(FFLAGS) \$(FOPTIM) -c \$<          \$(FC) \$(FFLAGS) \$(FOPTIM) -c \$<
3034  .F.o:  .F.o:
3035          \$(FC) \$(FFLAGS) \$(FOPTIM) -c \$<          \$(FC) \$(FFLAGS) \$(FOPTIM) -c \$<
3036  .F90.$FS90:  .F90.$FS90:
3037          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@          \$(CPPCMD)  > \$@
3038  .FF90.f$FS90:  .FF90.f$FS90:
3039          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@          \$(CPPCMD)  > \$@
3040  .$FS90.o:  .$FS90.o:
3041          \$(F90C) \$(F90FLAGS) \$(F90OPTIM) -c \$<          \$(F90C) \$(F90FLAGS) \$(F90OPTIM) -c \$<
3042  .f$FS90.o:  .f$FS90.o:
# Line 2924  cat >>$MAKEFILE <<EOF Line 3045  cat >>$MAKEFILE <<EOF
3045  .c.o:  .c.o:
3046          \$(CC) \$(CFLAGS) \$(DEFINES) \$(INCLUDES) -c \$<          \$(CC) \$(CFLAGS) \$(DEFINES) \$(INCLUDES) -c \$<
3047  .flow.flowdir:  .flow.flowdir:
3048          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@          \$(CPPCMD) > \$@
3049    
3050  # Special exceptions that use the ( .F - .p - .$FS - .o ) rule-chain  # Special exceptions that use the ( .F - .p - .$FS - .o ) rule-chain
3051  .F.p:  .F.p:
3052          \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@          \$(CPPCMD) > \$@
3053  .p.$FS:  .p.$FS:
3054          \$(KPP) \$(KFLAGS1)\$@ \$(KFLAGS2) \$<          \$(KPP) \$(KFLAGS1)\$@ \$(KFLAGS2) \$<
3055    
# Line 2947  TAF            = ${TAF} Line 3068  TAF            = ${TAF}
3068    
3069  TAF_EXTRA      = ${TAF_EXTRA}  TAF_EXTRA      = ${TAF_EXTRA}
3070  TAMC_EXTRA     = ${TAMC_EXTRA}  TAMC_EXTRA     = ${TAMC_EXTRA}
3071    LOCAL_MPI_HEADERS    = ${LOCAL_MPI_HEADERS}
3072    
3073  EOF  EOF
3074    
# Line 2986  ad_exe_target: Line 3108  ad_exe_target:
3108          @-rm -f ad_config.template          @-rm -f ad_config.template
3109          \$(MAKE) -f \$(MAKEFILE) \$(EXE_AD)          \$(MAKE) -f \$(MAKEFILE) \$(EXE_AD)
3110    
3111  ad_input_code.$FS: \$(AD_FILES) \$(H_SRC_FILES) \$(AD_FLOW_FILES)  ad_input_code.$FS: \$(AD_FILES) \$(AD_FLOW_FILES)
3112          @$BASH\$(TOOLSDIR)/convert_cpp_cmd2defines "Adjoint version" -bAD_CONFIG_H -DALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN > ad_config.template          @$BASH\$(TOOLSDIR)/convert_cpp_cmd2defines "Adjoint version" -bAD_CONFIG_H -DALLOW_ADJOINT_RUN -UALLOW_TANGENTLINEAR_RUN > ad_config.template
3113          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
3114          @-rm -f ad_config.template          @-rm -f ad_config.template
# Line 3004  adtafonly: Line 3126  adtafonly:
3126          ls -l ad_input_code_ad.$FS          ls -l ad_input_code_ad.$FS
3127          cat ad_input_code_ad.$FS | sed -f \$(TOOLSDIR)/adjoint_sed > ad_taf_output.$FS          cat ad_input_code_ad.$FS | sed -f \$(TOOLSDIR)/adjoint_sed > ad_taf_output.$FS
3128    
3129  \${EXE_AD}: ad_taf_output.o \$(OBJFILES)  \$(EXE_AD): \$(SPECIAL_FILES) \$(F77_SRC_FILES) \$(C_SRC_FILES) \$(H_SRC_FILES) \$(F90_SRC_FILES) ad_taf_output.o \$(OBJFILES) \$(EMBEDDED_FILES)
3130          \$(LINK) -o \${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_taf_output.o \$(LIBS)          \$(LINK) -o \${EXE_AD} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ad_taf_output.o \$(LIBS)
3131    
3132  ad_tamc_output.$FS: ad_input_code.$FS  ad_tamc_output.$FS: ad_input_code.$FS
# Line 3034  ftl_exe_target: Line 3156  ftl_exe_target:
3156          @-rm -f ad_config.template          @-rm -f ad_config.template
3157          \$(MAKE) -f \$(MAKEFILE) \$(EXE_FTL)          \$(MAKE) -f \$(MAKEFILE) \$(EXE_FTL)
3158    
3159  ftl_input_code.$FS: \$(AD_FILES) \$(H_SRC_FILES)  ftl_input_code.$FS: \$(AD_FILES)
3160          @$BASH\$(TOOLSDIR)/convert_cpp_cmd2defines "TangLin version" -bAD_CONFIG_H -UALLOW_ADJOINT_RUN -DALLOW_TANGENTLINEAR_RUN > ad_config.template          @$BASH\$(TOOLSDIR)/convert_cpp_cmd2defines "TangLin version" -bAD_CONFIG_H -UALLOW_ADJOINT_RUN -DALLOW_TANGENTLINEAR_RUN > ad_config.template
3161          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
3162          @-rm -f ad_config.template          @-rm -f ad_config.template
# Line 3052  ftltafonly: Line 3174  ftltafonly:
3174          ls -l ftl_input_code_ftl.$FS          ls -l ftl_input_code_ftl.$FS
3175          cat ftl_input_code_ftl.$FS | sed -f \$(TOOLSDIR)/adjoint_sed > ftl_taf_output.$FS          cat ftl_input_code_ftl.$FS | sed -f \$(TOOLSDIR)/adjoint_sed > ftl_taf_output.$FS
3176    
3177  \${EXE_FTL}: ftl_taf_output.o \$(OBJFILES)  \$(EXE_FTL): \$(SPECIAL_FILES) \$(F77_SRC_FILES) \$(C_SRC_FILES) \$(H_SRC_FILES) \$(F90_SRC_FILES) ftl_taf_output.o \$(OBJFILES) \$(EMBEDDED_FILES)
3178          \$(LINK) -o \${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_taf_output.o \$(LIBS)          \$(LINK) -o \${EXE_FTL} \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) ftl_taf_output.o \$(LIBS)
3179    
3180  ftl_tamc_output.$FS: ftl_input_code.$FS  ftl_tamc_output.$FS: ftl_input_code.$FS
# Line 3168  w2f__types.F90 \ Line 3290  w2f__types.F90 \
3290  OAD_active.F90 \  OAD_active.F90 \
3291  OAD_cp.F90 \  OAD_cp.F90 \
3292  OAD_rev.F90 \  OAD_rev.F90 \
3293  OAD_tape.F90  OAD_tape.F90 \
3294    revolve.F90
3295    
3296  OPENAD_SUPPORT_C_SRC_FILES = \  OPENAD_SUPPORT_C_SRC_FILES = \
3297  iaddr.c \  iaddr.c \
# Line 3194  AD_OBJ_FILES_S2=\$(AD_OBJ_FILES_S1) \$(N Line 3317  AD_OBJ_FILES_S2=\$(AD_OBJ_FILES_S1) \$(N
3317          \$(LINK) -o \$@ \$(FFLAGS) \$(FOPTIM) \$(AD_OBJ_FILES_S2) \$(LIBS)          \$(LINK) -o \$@ \$(FFLAGS) \$(FOPTIM) \$(AD_OBJ_FILES_S2) \$(LIBS)
3318    
3319  # create sources files modules from header files containing common blocks  # create sources files modules from header files containing common blocks
3320  %_mod.FF90 : %.h ../OAD_support/cb2mGetModules.csh ../OAD_support/cb2mGetModules.awk  %_mod.FF90 : %.h \${OADTOOLS}/cb2mGetModules.csh \${OADTOOLS}/cb2mGetModules.awk
3321          ../OAD_support/cb2mGetModules.csh $< ../OAD_support/cb2mGetModules.awk          \${OADTOOLS}/cb2mGetModules.csh $< \${OADTOOLS}/cb2mGetModules.awk
3322    
3323  # create new header files with USE statements for the new modules made above  # create new header files with USE statements for the new modules made above
3324  %_mod.h : %.h ../OAD_support/cb2mGetHeaders.csh ../OAD_support/cb2mGetHeaders.awk  %_mod.h : %.h \${OADTOOLS}/cb2mGetHeaders.csh \${OADTOOLS}/cb2mGetHeaders.awk
3325          ../OAD_support/cb2mGetHeaders.csh $< ../OAD_support/cb2mGetHeaders.awk \$(CB2M_F90_SRC_NAMES)          \${OADTOOLS}/cb2mGetHeaders.csh $< \${OADTOOLS}/cb2mGetHeaders.awk \$(CB2M_F90_SRC_NAMES)
3326    
3327  # change the include directives of everybody to refer to  the new header files with the USE statements  # change the include directives of everybody to refer to  the new header files with the USE statements
3328  %_cb2m.FF90 : %.F ../OAD_support/cb2mUseModules.bash  %_cb2m.FF90 : %.F \${OADTOOLS}/cb2mUseModules.bash
3329          ../OAD_support/cb2mUseModules.bash $< ${MPI}          \${OADTOOLS}/cb2mUseModules.bash $< ${MPI}
3330    
3331  # makefile debug rule  # makefile debug rule
3332  small_f: \$(CB2M_F90_PP_SRC_FILES)  small_f: \$(CB2M_F90_PP_SRC_FILES)
# Line 3225  ad_input_code_sf.pre.f90 : \$(CB2M_AD_FI Line 3348  ad_input_code_sf.pre.f90 : \$(CB2M_AD_FI
3348    
3349  # replace stop statements (to avoid the implied unstructured control flow)  with print statements  # replace stop statements (to avoid the implied unstructured control flow)  with print statements
3350  ad_input_code_sf.pre.s2p.f90 : ad_input_code_sf.pre.f90  ad_input_code_sf.pre.s2p.f90 : ad_input_code_sf.pre.f90
3351          cat \$< | sed -f ../OAD_support/stop2print.sed > ad_input_code_sf.pre.s2p.f90          cat \$< | sed -f \${OADTOOLS}/stop2print.sed > ad_input_code_sf.pre.s2p.f90
3352    
3353  # F -> WHIRL  # F -> WHIRL
3354  ad_input_code_sf.pre.s2p.B: ad_input_code_sf.pre.s2p.f90  ad_input_code_sf.pre.s2p.B: ad_input_code_sf.pre.s2p.f90
# Line 3248  ad_input_code_sf.pre.s2p.xb.x2w.w2f.f$FS Line 3371  ad_input_code_sf.pre.s2p.xb.x2w.w2f.f$FS
3371          \${OPEN64ROOT}/whirl2f/whirl2f -FLIST:ftn_file=\$@ -openad \$<          \${OPEN64ROOT}/whirl2f/whirl2f -FLIST:ftn_file=\$@ -openad \$<
3372    
3373  # insert template directives  # insert template directives
3374  ad_input_code_sf.pre.s2p.xb.x2w.w2f.td.f$FS90: ad_input_code_sf.pre.s2p.xb.x2w.w2f.f$FS90 ../OAD_support/insertTemplateDir.bash  ad_input_code_sf.pre.s2p.xb.x2w.w2f.td.f$FS90: ad_input_code_sf.pre.s2p.xb.x2w.w2f.f$FS90 \${OADTOOLS}/insertTemplateDir.bash
3375          ../OAD_support/insertTemplateDir.bash \$< \$@          \${OADTOOLS}/insertTemplateDir.bash \$< \$@
3376    
3377  PPEXTRAS=\$(wildcard ../OAD_support/ad_template.*.F) ../OAD_support/ad_inline.F  PPEXTRAS=\$(wildcard \${OADTOOLS}/ad_template.*.F) \${OADTOOLS}/ad_inline.F
3378  # postprocess F'  # postprocess F'
3379  postProcess.tag: ad_input_code_sf.pre.s2p.xb.x2w.w2f.td.f$FS90 \$(PPEXTRAS:.F=.f) | w2f__types.f90  postProcess.tag: ad_input_code_sf.pre.s2p.xb.x2w.w2f.td.f$FS90 \$(PPEXTRAS:.F=.f) | w2f__types.f90
3380          \${OPENADFORTTK_BASE}/tools/SourceProcessing/postProcess.py --progress --timing --infoUnitFile w2f__types.f90 --outputFormat=fixed --separateOutput --pathSuffix "" --filenameSuffix "_oad" -m r -i ../OAD_support/ad_inline.f \$<          \${OPENADFORTTK_BASE}/tools/SourceProcessing/postProcess.py --progress --timing --infoUnitFile w2f__types.f90 --outputFormat=fixed --separateOutput --pathSuffix "" --filenameSuffix "_oad" -m r -i \${OADTOOLS}/ad_inline.f \$<
3381          # the target is a placeholder to trigger a single execution of the rule          # the target is a placeholder to trigger a single execution of the rule
3382          touch \$@          touch \$@
3383  # put this so make knows about the postprocessing output  # put this so make knows about the postprocessing output
# Line 3266  OAD_intrinsics_oad.f \$(CB2M_AD_FILES:.f Line 3389  OAD_intrinsics_oad.f \$(CB2M_AD_FILES:.f
3389    
3390  # link the support files:  # link the support files:
3391  \$(OPENAD_SUPPORT_F90_SRC_FILES) \$(OPENAD_SUPPORT_C_SRC_FILES):  \$(OPENAD_SUPPORT_F90_SRC_FILES) \$(OPENAD_SUPPORT_C_SRC_FILES):
3392          \$(LN) ../OAD_support/\$@ .          \$(LN) \${OADTOOLS}/\$@ .
3393    
3394  AD_CLEAN += *_mod.h *_mod.F90 *.FF90 *.mod-whirl temp.sed oad_cp.* postProcess.tag \$(PPEXTRAS:.F=.f)  AD_CLEAN += *_mod.h *_mod.F90 *.FF90 *.mod-whirl temp.sed oad_cp.* postProcess.tag \$(PPEXTRAS:.F=.f)
3395    

Legend:
Removed from v.1.238  
changed lines
  Added in v.1.252

  ViewVC Help
Powered by ViewVC 1.1.22