/[MITgcm]/MITgcm/verification/testreport
ViewVC logotype

Diff of /MITgcm/verification/testreport

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

revision 1.42 by jmc, Thu Jul 8 15:47:19 2004 UTC revision 1.43 by edhill, Thu Jul 8 20:58:24 2004 UTC
# Line 27  usage() Line 27  usage()
27      echo "                             (DEF=\"make output.txt\")"      echo "                             (DEF=\"make output.txt\")"
28      echo "  (-m|-make) STRING        command to use for \"make\""      echo "  (-m|-make) STRING        command to use for \"make\""
29      echo "                             (DEF=\"make\")"      echo "                             (DEF=\"make\")"
30        echo "  (-j) JOBS                use \"make -j JOBS\" for parallel builds"
31      echo "  (-clean)                 *ONLY* run \"make CLEAN\""      echo "  (-clean)                 *ONLY* run \"make CLEAN\""
32      echo "  (-quick|-q)              same as \"-nogenmake -noclean -nodepend\""      echo "  (-quick|-q)              same as \"-nogenmake -noclean -nodepend\""
33      echo "  (-nogenmake|-ng)         skip the genmake stage"      echo "  (-nogenmake|-ng)         skip the genmake stage"
# Line 307  makemodel() Line 308  makemodel()
308          if test -r Makefile ; then          if test -r Makefile ; then
309              printf 'make ... ' 1>&2              printf 'make ... ' 1>&2
310              if test "x$ADM" = x ; then              if test "x$ADM" = x ; then
311                  $MAKE >> make.log 2>&1                  if test "x$JOBS" = x ; then
312                        $MAKE >> make.log 2>&1
313                    else
314                        $MAKE -j $JOBS >> make.log 2>&1
315                    fi
316              else              else
317                  $MAKE adall >> make.log 2>&1                  $MAKE adall >> make.log 2>&1
318              fi              fi
# Line 567  HAVE_MPACK= Line 572  HAVE_MPACK=
572  MPACK="$MPACKDIR/mpack"  MPACK="$MPACKDIR/mpack"
573  COMMAND=  COMMAND=
574  MAKE=make  MAKE=make
575    JOBS=
576  MPI=f  MPI=f
577  DELDIR=  DELDIR=
578    
# Line 621  for ac_option ; do Line 627  for ac_option ; do
627          -make=* | --make=*)          -make=* | --make=*)
628              MAKE=$ac_optarg ;;              MAKE=$ac_optarg ;;
629    
630            -j) ac_prev=JOBS ;;
631            -j=*) JOBS=$ac_optarg ;;
632    
633          -clean | --clean)          -clean | --clean)
634              CLEANUP=t ;;              CLEANUP=t ;;
635    

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43

  ViewVC Help
Powered by ViewVC 1.1.22