/[MITgcm]/MITgcm/tools/genmake
ViewVC logotype

Diff of /MITgcm/tools/genmake

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

revision 1.22.2.3 by adcroft, Thu Jan 25 17:56:33 2001 UTC revision 1.47 by heimbach, Thu Aug 23 19:33:44 2001 UTC
# Line 1  Line 1 
1  #!/bin/csh -f  #!/bin/csh -f
2  #  #
3  # $Header$  # $Header$
4    # $Name$
5  #  #
6  # Makefile generator for MITgcm UV codes  # Makefile generator for MITgcm UV codes
7  #   created by cnh 03/98  #   created  by cnh 03/98
8  #   adapted by aja 06/98  #   adapted  by aja 06/98
9    #   modified by aja 01/00
10    
11    # Default lists
12    set DISABLE = ( aim autodiff cal cost ctrl ecco exf grdchk )
13    set DEFINES = ( )
14    set ENABLE  = ( )
15    set MODS  = ( )
16    
17    # Grab variables/lists from .genmakerc
18    if (-r .genmakerc) source .genmakerc
19    
20  # Process command-line arguments  # Process command-line arguments
21  set allargs=( $argv )  set allargs=( $argv )
# Line 24  while ($#allargs) Line 35  while ($#allargs)
35     exit     exit
36     breaksw     breaksw
37   case -platform*:   case -platform*:
38       if ($?platform) then
39        echo Option -platform=dir can only be specified once.; exit 1
40       endif
41     set platform = ( `echo $arg | sed 's/-platform=//' `)     set platform = ( `echo $arg | sed 's/-platform=//' `)
42     breaksw     breaksw
43     case -rootdir:
44     case -rootdir=:
45       echo "To specify root directory you must specify one with -rootdir=dir"
46       echo "with NO space eg. -rootdir=../../..  or  -rootdir=/usr/people/joe/src"
47       exit
48       breaksw
49   case -rootdir=*:   case -rootdir=*:
50       if ($?ROOTDIR) then
51        echo "***" Warning: variable \$ROOTDIR is already set to $ROOTDIR
52        echo "***" Command line \"$arg\" will override this.
53       endif
54     set ROOTDIR = ( `echo $arg | sed 's/-rootdir=//' `)     set ROOTDIR = ( `echo $arg | sed 's/-rootdir=//' `)
55     breaksw     breaksw
56   case -mymods=*:   case -mods:
57     set MYMODS = ( `echo $arg | sed 's/-mymods=//' `)   case -mods=:
58       echo "To specify an additional source directory you must specify one with -mods=dir"
59       echo "with NO space eg. -mods=../code  or  -mods=/usr/people/joe/src"
60       exit
61       breaksw
62     case -mods=*:
63       set MODS = ( $MODS `echo $arg | sed 's/-mods=//' | sed 's/,/ /g' `)
64       breaksw
65     case -disable:
66     case -disable=:
67       echo "To disable packages from compilation use -disable=pkg1,pkg2"
68       echo "with NO spaces eg. -disable=kpp,gmredi or -disable=all (to enable all packages)"
69       exit
70       breaksw
71     case -disable=*:
72       set DISABLE = ( $DISABLE `echo $arg | sed 's/-disable=//' | sed 's/,/ /g' `)
73       breaksw
74     case -enable:
75     case -enable=:
76       echo "To enable packages from compilation use -enable=pkg1,pkg2"
77       echo "with NO spaces eg. -enable=aim or -enable=all (to enable all packages)"
78       echo "-enable overrides -disable, ie. a package listed in both is enabled"
79       exit
80       breaksw
81     case -ieee:
82       set IEEE
83       breaksw
84     case -enable=*:
85       set ENABLE = ( $ENABLE `echo $arg | sed 's/-enable=//' | sed 's/,/ /g' `)
86     breaksw     breaksw
87   case -mpi:   case -mpi:
88     echo "Enabling MPI options"     echo "Enabling MPI options"
# Line 41  while ($#allargs) Line 93  while ($#allargs)
93     echo "Including paths to JAM libraries"     echo "Including paths to JAM libraries"
94     breaksw     breaksw
95   case -help:   case -help:
96     echo "usage: $0 [-help] [-makefile[=...]] [-platform=...] [-mpi]"     echo "usage: $0 [-help] [-makefile[=...]] [-platform=...] [-mpi] [-jam] [-disable=pkg1[,pkg2,...]] [-enable=pkg1[,pkg2,...]] [-mods=dir1[,dir2,...]] [-rootdir=dir]"
97    cat << EOF
98    
99    $0 is used to generate the Makefile in the current directory.
100    
101    Typical invocations are:
102     o from "bin":   ../tools/genmake
103     o from "verification/expt/code": ../../../tools/genmake
104     o from "verification/expt/input": ../../../tools/genmake -mods=../code
105     o from a scratch directory: ~/mitgcm/tools/genmake -rootdir=~/mitgcm
106       or  ~/mitgcm/tools/genmake -rootdir=~/mitgcm -mods=~/mymods
107    
108    Packages (collected modules of code)  can be disabled to avoid unnecessary
109    compilation of unused code. For instance if you know you will not
110    use GM/Redi, KPP and OBCS and they are appropriate turned-off in the
111    configuration:
112       .../tools/genmake -disable=gmredi,kpp,obcs
113    
114    If you add some source files you can re-call the previous instance of
115    genmake with "make makefile".
116    
117    genmake also reads the file .genmakerc which can be used to configure
118    options (primarily the command-line options above) for particular experiments.
119    EOF
120     exit     exit
121     breaksw     breaksw
122   default:   default:
# Line 56  end Line 131  end
131  # Default actions/options  # Default actions/options
132    
133  # If platform wasn't specified then determine platform type of the host  # If platform wasn't specified then determine platform type of the host
134  if ($?platform == 0) then  if (! $?platform) then
135   set platform = (`uname`)   set platform = (`uname`)
136  endif  endif
137  # If name of makefile wasn't specified then use default "Makefile"  # If name of makefile wasn't specified then use default "Makefile"
138  if ($?mfile == 0) set mfile = ( Makefile )  if (! $?mfile) set mfile = ( Makefile )
139    
140  set mach  = ( `uname -a` )  set mach  = ( `uname -a` )
141  echo Operating system: $mach  echo Operating system: $mach
142    
   
143  # Directories for source, includes, binaries and executables  # Directories for source, includes, binaries and executables
 # Note  
 # o If you prefer/need everything under a single directory  
 #   copy everything in ../eesupp/src, ../model/src,  
 #   ../eesupp/inc and ../model/inc into a directory and then  
 #   edit the paths below to ./  
144  #  #
145  # If -rootdir wasn't specified then assume script is being run from bin  # If -rootdir wasn't specified then assume script is being run from bin
146  # but if it was supplied then we should place the executable in the build dir  # but if it was supplied then we should place the executable in the build dir
147  if ($?ROOTDIR == 0) then  if (! $?ROOTDIR) then
148    set ROOTDIR = ( .. )    set pwd=`pwd`
149  else    if ($pwd:t == bin & -d ../model & -d ../eesupp & -d ../pkg) then
150    if ($?EXEDIR == 0) set EXEDIR = ( ./ )      set ROOTDIR = ( .. )
151      endif
152    endif
153    # Scan for logical ROOTDIR
154    if (! $?ROOTDIR) then
155      foreach dr (. .. ../.. ../../.. ../../../.. ../../../../..)
156        if (-d $dr/model & -d $dr/eesupp & -d $dr/pkg) then
157          set ROOTDIR = $dr
158          echo ROOTDIR was not specified. Setting ROOTDIR = \"$ROOTDIR\"
159          break
160        endif
161      end
162    endif
163    if (! $?ROOTDIR) then
164      echo Root directory was not specified and could not be determined.
165      echo Specify the root location of the model source with -rootdir=dir
166      exit 1
167  endif  endif
168  if ($?MYMODS == 0) then  if (! -d $ROOTDIR) then
169   set SOURCEDIRS  = ( $ROOTDIR/{eesupp,model,diags}/src/ $ROOTDIR/pkg/[a-z]*/ )    echo Root directory $ROOTDIR not found.;exit 1
170   set INCLUDEDIRS = ( ./ $ROOTDIR/{eesupp,model,diags}/inc/ $ROOTDIR/pkg/[a-z]*/ )  endif
171    # If -mods wasn't specified then we will assume that we can find all the
172    # source code in the standard directories
173    if (! $?MODS) then
174     set SOURCEDIRS  = ( )
175     set INCLUDEDIRS = ( )
176  else  else
177   set SOURCEDIRS  = ( $MYMODS/ $ROOTDIR/{eesupp,model,diags}/src/ $ROOTDIR/pkg/[a-z]*/ )   set SOURCEDIRS  = ( $MODS )
178   set INCLUDEDIRS = ( ./ $MYMODS/ $ROOTDIR/{eesupp,model,diags}/inc/ $ROOTDIR/pkg/[a-z]*/ )   set INCLUDEDIRS = ( $MODS )
179    endif
180    if (! $?BUILDDIR) set BUILDDIR = ( . )
181    if (! -d $BUILDDIR) then
182      echo Build directory $BUILDDIR not found.;exit 1
183  endif  endif
184  if ($?BUILDDIR == 0) set BUILDDIR = ( ./ )  if (! $?EXEDIR) then
185  if ($?EXEDIR == 0) set EXEDIR = ( $ROOTDIR/exe/ )    set pwd=`pwd`
186  if ($?EXECUTABLE == 0) set EXECUTABLE  = ( mitgcmuv )    if ($pwd:t == bin & -d ../exe & $ROOTDIR == ..) then
187  if ($?TOOLSDIR == 0) set TOOLSDIR = ( $ROOTDIR/tools/ )     set EXEDIR = ( ../exe )
188      else
189       set EXEDIR = ( . )
190      endif
191    endif
192    if (! -d $EXEDIR) then
193      echo Executable directory $EXEDIR not found.;exit 1
194    endif
195    if (! $?TOOLSDIR) set TOOLSDIR = ( $ROOTDIR/tools )
196    if (! -d $TOOLSDIR) then
197      echo Tools directory $TOOLSDIR not found.;exit 1
198    endif
199    if (! $?EXECUTABLE) set EXECUTABLE  = ( mitgcmuv )
200    
201    # We have a special set of source files in eesupp/src which
202    # are generated from some template source files. We'll make them
203    # first so the appear as regular source code
204    if (-r $ROOTDIR/eesupp/src/Makefile) then
205     echo Making source files in eesupp from templates...
206     (cd $ROOTDIR/eesupp/src/; make) >& make_eesupp.errs
207     if ($status == 0) then
208       rm -f make_eesupp.errs
209     else
210       cat make_eesupp.errs
211       exit 2
212     endif
213    endif
214    
215    # Now scan the standard source code tree
216    foreach dr ($SOURCEDIRS)
217      set adr=$dr
218      if (! -d $adr) then
219        echo mods directory $adr not found.; exit 1
220      endif
221      echo Adding mods dir: $adr
222    end
223    if (! $?PACKAGES) then
224      set PACKAGES=()
225      foreach pkg (`cd $ROOTDIR/pkg; find . -type d | grep -v CVS | sed 's:\./::' | grep -v "\." | sort`)
226       if (-d $ROOTDIR/pkg/$pkg) set PACKAGES=($PACKAGES $pkg)
227      end
228    endif
229    foreach dr ($PACKAGES)
230      set enable
231      foreach p ($DISABLE)
232       if ($p != 'all' & ! -d $ROOTDIR/pkg/$p) then
233         echo Specified package \"$p\" does not exist.
234         exit 1
235       endif
236       if ($dr == $p) unset enable
237       if ($p == 'all') unset enable
238    #  The following allows entire trees to be disabled
239       if ($dr:h == $p) unset enable
240       if ($dr:h:h == $p) unset enable
241       if ($dr:h:h:h == $p) unset enable
242       if ($dr:h:h:h:h == $p) unset enable
243      end
244      foreach p ($ENABLE)
245       if ($dr == $p) set enable
246      end
247      if ($?enable) then
248        set adr=$ROOTDIR/pkg/$dr
249        if (! -d $adr) then
250          echo Source directory $adr not found.; exit 1
251        endif
252        echo Adding pkg dir: $adr
253        set SOURCEDIRS = ($SOURCEDIRS $adr)
254        set INCLUDEDIRS = ($INCLUDEDIRS $adr)
255      else
256        echo "                                      *" Package \"$dr\" NOT enabled.
257        switch ($dr)
258          case mom_fluxform:
259            set DEFINES = ($DEFINES '-DDISABLE_MOM_FLUXFORM'); breaksw
260          case mom_vecinv:
261            set DEFINES = ($DEFINES '-DDISABLE_MOM_MOMVECINV'); breaksw
262          default:
263            breaksw
264        endsw
265      endif
266    end
267    if (! $?STANDARDDIRS) set STANDARDDIRS=(eesupp model)
268    foreach dr ($STANDARDDIRS)
269      set adr=$ROOTDIR/$dr/src
270      if (! -d $adr) then
271        echo Source directory $adr not found.; exit 1
272      endif
273      echo Adding src dir: $adr
274      set SOURCEDIRS = ($SOURCEDIRS $adr)
275      set idr = `echo $adr | sed 's/src/inc/'`
276      set INCLUDEDIRS = ($INCLUDEDIRS $idr)
277    end
278    
279  # This is the generic configuration.  # This is the generic configuration.
280  # Platform specific options are chosen below  # Platform specific options are chosen below
# Line 99  set CPP        = ( '/lib/cpp -P' ) Line 283  set CPP        = ( '/lib/cpp -P' )
283  set KPP        = (  )  set KPP        = (  )
284  set FC         = ( 'f77' )  set FC         = ( 'f77' )
285  set LINK       = ( 'f77' )  set LINK       = ( 'f77' )
286  set DEFINES    = (  )  set INCLUDES   = ( -I. )
 set INCLUDES   = (  )  
287  set FFLAGS     = (  )  set FFLAGS     = (  )
288  set FOPTIM     = (  )  set FOPTIM     = (  )
289  set KFLAGS1    = (  )  set KFLAGS1    = (  )
# Line 122  endif Line 305  endif
305    
306  # Platform specific options  # Platform specific options
307  switch ($platform$USEMPI)  switch ($platform$USEMPI)
   case OSF1:  
308    case OSF1+mpi:    case OSF1+mpi:
309        echo "Configuring for DEC Alpha with MPI"
310        set LIBS       = ( '-lfmpi -lmpi -lkmp_osfp10 -pthread' )
311      case OSF1:
312      echo "Configuring for DEC Alpha"      echo "Configuring for DEC Alpha"
313      set CPP        = ( '/usr/bin/cpp -P' )      set CPP        = ( '/usr/bin/cpp -P' )
314      set DEFINES    = ( ${DEFINES}  '-DTARGET_DEC -DWORDLENGTH=1' )      set DEFINES    = ( ${DEFINES}  '-DTARGET_DEC -DWORDLENGTH=1' )
315      set KPP        = ( 'kapf' )      set KPP        = ( )
316      set KPPFILES   = ( 'main.F' )      set KPPFILES   = ( )
317      set KFLAGS1    = ( '-scan=132 -noconc -cmp=' )      set KFLAGS1    = ( )
318      set FC         = ( 'f77' )      set FC         = ( 'f77' )
319      set FFLAGS     = ( '-convert big_endian -r8 -extend_source -u -automatic -call_shared -notransform_loops -align dcommons' )      set FFLAGS     = ( '-convert big_endian -r8 -extend_source -automatic -call_shared -notransform_loops -align dcommons' )
320      set FOPTIM     = ( '-O5 -fast -tune host -inline all' )      set FOPTIM     = ( '-O5 -fast -tune host -inline all' )
321      set NOOPTFLAGS = ( '-O0' )      set NOOPTFLAGS = ( '-O0' )
     set LIBS       = ( '-lfmpi -lmpi -lkmp_osfp10 -pthread' )  
322      set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F')      set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F')
323      set RMFILES    = ( '*.p.out' )      set RMFILES    = ( '*.p.out' )
324      breaksw      breaksw
# Line 152  switch ($platform$USEMPI) Line 336  switch ($platform$USEMPI)
336      echo "Configuring for SGI Mips"      echo "Configuring for SGI Mips"
337      set DEFINES    = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )      set DEFINES    = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
338      set INCLUDES   = ( '-I/usr/local/mpi/include' )      set INCLUDES   = ( '-I/usr/local/mpi/include' )
339      set FFLAGS     = ( '-extend_source -mp -mpio -bytereclen -r10000 -mips4' )      set FFLAGS     = ( '-extend_source -mp -mpio -bytereclen -r10000 -mips4 -r8 -static' )
340      set FOPTIM     = ( '-O3' )      set FOPTIM     = ( '-O3' )
341  #   set NOOPTFLAGS = ( '-O0' )  #   set NOOPTFLAGS = ( '-O0' )
342  #   set NOOPTFILES = ( 'barrier.F different_multiple.F ' \  #   set NOOPTFILES = ( 'barrier.F different_multiple.F ' \
# Line 204  switch ($platform$USEMPI) Line 388  switch ($platform$USEMPI)
388      set FFLAGS     = ( '-stackvar -explicitpar -vpara -e -u -noautopar')      set FFLAGS     = ( '-stackvar -explicitpar -vpara -e -u -noautopar')
389      set FOPTIM     = ( '-fast -O3' )      set FOPTIM     = ( '-fast -O3' )
390      set NOOPTFLAGS = ( '-O0' )      set NOOPTFLAGS = ( '-O0' )
391      set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F ini_vertical_grid.F')      set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F ini_vertical_grid.F ini_spherical_polar_grid.F ini_cori.F mon_printstats_rl.F mon_printstats_rs.F')
392      breaksw      breaksw
393    case SunOS+mpi:    case SunOS+mpi:
394      set LN         = ( '/usr/bin/ln -s' )      set LN         = ( '/usr/bin/ln -s' )
# Line 216  switch ($platform$USEMPI) Line 400  switch ($platform$USEMPI)
400      set NOOPTFLAGS = ( '-O0' )      set NOOPTFLAGS = ( '-O0' )
401      set LIBS       = ( '-L/usr/local/mpi/lib/solaris/ch_shmem -lmpi -lthread' \      set LIBS       = ( '-L/usr/local/mpi/lib/solaris/ch_shmem -lmpi -lthread' \
402                         '-lsocket -lnsl' )                         '-lsocket -lnsl' )
403      set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F ini_vertical_grid.F')      set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F ini_vertical_grid.F ini_spherical_polar_grid.F ini_cori.F mon_printstats_rl.F mon_printstats_rs.F')
404      breaksw      breaksw
405    case IRIX32:    case IRIX32:
406      echo "Configuring for SGI ONYX running IRIX64"      echo "Configuring for SGI ONYX running IRIX64"
# Line 253  switch ($platform$USEMPI) Line 437  switch ($platform$USEMPI)
437      set DEFINES    = ( ${DEFINES} '-D_BYTESWAPIO -DWORDLENGTH=4' )      set DEFINES    = ( ${DEFINES} '-D_BYTESWAPIO -DWORDLENGTH=4' )
438      set FC         = ( 'g77' )      set FC         = ( 'g77' )
439      set FFLAGS     = ( '-Wimplicit -Wunused -Wuninitialized' )      set FFLAGS     = ( '-Wimplicit -Wunused -Wuninitialized' )
440      set FOPTIM     = ( '-O3 -malign-double -funroll-loops ' )      if ($?IEEE) set FFLAGS     = ( $FFLAGS '-ffloat-store' )
441        set FOPTIM     = ( '-O3 -malign-double -funroll-loops' )
442      set LINK       = ( 'g77' )      set LINK       = ( 'g77' )
443      breaksw      breaksw
444    case Linux+pgi+mpi:    case Linux+pgi+mpi:
445      if ($?include_jam_libs) then      if ($?include_jam_libs) then
446       set INCLUDES   = ( '-I/usr/local//mpich-cnh-install/include' )       set INCLUDES   = ( '-I/usr/local/mpich-1.2.1/pgi_fortran_binding/include' )
447       set LIBS       = ( '-L/usr/local/mpich-cnh-install/lib/LINUX/ch_p4/ -lfmpich -lmpich' )       set LIBS       = ( '-L/usr/local/mpich-1.2.1/pgi_fortran_binding/lib/ -lfmpich -lmpich' )
448      else      else
449       set INCLUDES   = ( '-I/usr/local/include' )       set INCLUDES   = ( '-I/usr/local/include' )
450       set LIBS       = ( '-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich' )       set LIBS       = ( '-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich' )
# Line 269  switch ($platform$USEMPI) Line 454  switch ($platform$USEMPI)
454      set CPP        = ( '/lib/cpp -traditional -P' )      set CPP        = ( '/lib/cpp -traditional -P' )
455      set DEFINES    = ( ${DEFINES} '-DWORDLENGTH=4' )      set DEFINES    = ( ${DEFINES} '-DWORDLENGTH=4' )
456      set FC         = ( 'pgf77' )      set FC         = ( 'pgf77' )
457      set FFLAGS     = ( '-byteswapio' )      set FFLAGS     = ( '-byteswapio -r8 -Mnodclchk -Mextend' )
458      set FOPTIM     = ( '-tp p6 -v -O2 -Munroll -Mvect=cachesize:512000,transform -Kieee' )      set FOPTIM     = ( '-tp p6 -v -O2 -Munroll -Mvect=cachesize:512000,transform -Kieee' )
459      set LINK       = ( 'pgf77' )      set LINK       = ( 'pgf77' )
460      breaksw      breaksw
# Line 329  echo "# This section creates symbolic li Line 514  echo "# This section creates symbolic li
514  echo "" >> srclinks.tmp  echo "" >> srclinks.tmp
515  echo -n 'SRCFILES = ' > srclist.inc  echo -n 'SRCFILES = ' > srclist.inc
516  echo -n 'CSRCFILES = ' > csrclist.inc  echo -n 'CSRCFILES = ' > csrclist.inc
517  #echo -n 'HEADERFILES = ' > hlist.inc  echo -n 'HEADERFILES = ' > hlist.inc
518  foreach dr ($SOURCEDIRS)  foreach dr ($SOURCEDIRS $INCLUDEDIRS .)
519   set deplist=( )   set deplist=( )
520   foreach srcfile (`cd $dr; ls *.[hcF]`)   foreach srcfile (`cd $dr; ls *.[hcF]`)
521    if (! -r .links.tmp/$srcfile) then    if (! -r .links.tmp/$srcfile) then
# Line 349  foreach dr ($SOURCEDIRS) Line 534  foreach dr ($SOURCEDIRS)
534       echo -n "           " $srcfile >> csrclist.inc       echo -n "           " $srcfile >> csrclist.inc
535       breaksw       breaksw
536      case h:      case h:
537  #     touch .links.tmp/$srcfile        touch .links.tmp/$srcfile
538  #     set deplist=($deplist $srcfile)        set deplist=($deplist $srcfile)
539  #     echo    ' \'                   >> hlist.inc        echo    ' \'                   >> hlist.inc
540  #     echo -n "           " $srcfile >> hlist.inc        echo -n "           " $srcfile >> hlist.inc
541       breaksw       breaksw
542      endsw      endsw
543     endif     endif
# Line 361  foreach dr ($SOURCEDIRS) Line 546  foreach dr ($SOURCEDIRS)
546   if ($#deplist != 0) then   if ($#deplist != 0) then
547    echo "# These files are linked from $dr" >> srclinks.tmp    echo "# These files are linked from $dr" >> srclinks.tmp
548    echo $deplist':' >> srclinks.tmp    echo $deplist':' >> srclinks.tmp
549    echo '\t$(LN) '$dr'$@ $@' >> srclinks.tmp    echo '        $(LN) '$dr'/$@ $@' >> srclinks.tmp
550   endif   endif
551  end  end
552  rm -rf .links.tmp  rm -rf .links.tmp
553  echo "" >> srclist.inc  echo "" >> srclist.inc
554  echo "" >> csrclist.inc  echo "" >> csrclist.inc
555  #echo "" >> hlist.inc  echo "" >> hlist.inc
556    
557  set THISHOSTNAME = ( `hostname` )  set THISHOSTNAME = ( `hostname` )
558  set THISCWD = ( `pwd` )  set THISCWD = ( `pwd` )
559  set THISDATE = ( `date` )  set THISDATE = ( `date` )
560    
561    if (-r $mfile) mv -f $mfile $mfile.bak
562  ###########################################  ###########################################
563  ## This is the template for the makefile ##  ## This is the template for the makefile ##
564  ###########################################  ###########################################
565  echo Creating makefile: $mfile  echo Creating makefile: $mfile
566  echo "# Multithreaded + multi-processing makefile for $mach" > ${mfile}  echo "# Multithreaded + multi-processing makefile for $mach" > ${mfile}
567  echo "# This makefile was generated automatically pn" >> ${mfile}  echo "# This makefile was generated automatically on" >> ${mfile}
568  echo "#    $THISDATE" >> ${mfile}  echo "#    $THISDATE" >> ${mfile}
569  echo "# by the command:" >> ${mfile}  echo "# by the command:" >> ${mfile}
570  echo "#    ${0} $argv" >> ${mfile}  echo "#    ${0} $argv" >> ${mfile}
# Line 408  BUILDDIR    = ${BUILDDIR} Line 594  BUILDDIR    = ${BUILDDIR}
594  SOURCEDIRS  = ${SOURCEDIRS}  SOURCEDIRS  = ${SOURCEDIRS}
595  INCLUDEDIRS = ${INCLUDEDIRS}  INCLUDEDIRS = ${INCLUDEDIRS}
596  EXEDIR      = ${EXEDIR}  EXEDIR      = ${EXEDIR}
597  EXECUTABLE  = \$(EXEDIR)${EXECUTABLE}  EXECUTABLE  = \$(EXEDIR)/${EXECUTABLE}
598  TOOLSDIR    = ${TOOLSDIR}  TOOLSDIR    = ${TOOLSDIR}
599    
600  EOF  EOF
# Line 420  cat >> ${mfile} <<EOF Line 606  cat >> ${mfile} <<EOF
606  # extra stuff for Hyades ............................................  # extra stuff for Hyades ............................................
607  HYADES_DIR = /u/u0/cnh/jam-lib/software  HYADES_DIR = /u/u0/cnh/jam-lib/software
608  HYADES_DIR = /u/u0/cnh/jam-lib-twoproc  HYADES_DIR = /u/u0/cnh/jam-lib-twoproc
609    HYADES_DIR = /usr/local/jamlib/current/dual_proc
610  WORK_DIR   = \$(HYADES_DIR)  WORK_DIR   = \$(HYADES_DIR)
611  DEPOSIT_DIR = linux_bin  DEPOSIT_DIR = linux_bin
612    
# Line 479  EOF Line 666  EOF
666    
667  cat srclist.inc  >> ${mfile}  cat srclist.inc  >> ${mfile}
668  cat csrclist.inc >> ${mfile}  cat csrclist.inc >> ${mfile}
669    cat hlist.inc >> ${mfile}
670  echo 'F77FILES =  $(SRCFILES:.F=.f)'                    >> ${mfile}  echo 'F77FILES =  $(SRCFILES:.F=.f)'                    >> ${mfile}
671  echo 'OBJFILES =  $(SRCFILES:.F=.o) $(CSRCFILES:.c=.o)' >> ${mfile}  echo 'OBJFILES =  $(SRCFILES:.F=.o) $(CSRCFILES:.c=.o)' >> ${mfile}
672    
673  rm -f srclist.inc csrclist.inc flist.tmp clist.tmp  rm -f srclist.inc csrclist.inc hlist.inc flist.tmp clist.tmp
674    
675  cat >> ${mfile} <<EOF  cat >> ${mfile} <<EOF
676    
# Line 495  all: \$(EXECUTABLE) Line 683  all: \$(EXECUTABLE)
683  depend:  depend:
684          @make links          @make links
685          makedepend -o .f \$(INCLUDES) \$(SRCFILES)          makedepend -o .f \$(INCLUDES) \$(SRCFILES)
686  links: \$(SRCFILES)  
687    links: \$(SRCFILES) \$(CSRCFILES) \$(HEADERFILES)
688    
689  small_f: \$(F77FILES)  small_f: \$(F77FILES)
690    
691    output.txt: \$(EXECUTABLE)
692            @echo -n "running ... "
693            @\$(EXECUTABLE) > \$@
694    
695  clean:  clean:
696          -rm -rf *.o *.f *.p ${RMFILES}          -rm -rf *.o *.f *.p ${RMFILES}
697  Clean:  Clean:
698          @make clean          @make clean
699          -find . -type l -exec rm {} \;          @make cleanlinks
700          -rm Makefile.bak          -rm -f Makefile.bak
701  CLEAN:  CLEAN:
702          @make Clean          @make Clean
703          -find \$(ROOTDIR)/verification/*/input/ -name "*.meta" -exec rm {} \;          -find \$(EXEDIR) -name "*.meta" -exec rm {} \;
704          -find \$(ROOTDIR)/verification/*/input/ -name "*.data" -exec rm {} \;          -find \$(EXEDIR) -name "*.data" -exec rm {} \;
705          -rm \$(EXECUTABLE)          -rm -f \$(EXECUTABLE)
706    
707    makefile:
708            ${0} $argv
709    cleanlinks:
710            -find . -type l -exec rm {} \;
711    
712  # The normal chain of rules is (  .F - .f - .o  )  # The normal chain of rules is (  .F - .f - .o  )
713  .F.f:  .F.f:

Legend:
Removed from v.1.22.2.3  
changed lines
  Added in v.1.47

  ViewVC Help
Powered by ViewVC 1.1.22