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

Annotation of /MITgcm/tools/genmake

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


Revision 1.55 - (hide annotations) (download)
Thu Sep 27 19:06:30 2001 UTC (22 years, 6 months ago) by adcroft
Branch: MAIN
Changes since 1.54: +29 -5 lines
Added entry to handle RH on alpha

1 cnh 1.1 #!/bin/csh -f
2     #
3 adcroft 1.55 # $Header: /u/u0/gcmpack/models/MITgcmUV/tools/genmake,v 1.54 2001/09/19 02:43:27 adcroft Exp $
4 adcroft 1.48 # $Name: $
5 cnh 1.1 #
6     # Makefile generator for MITgcm UV codes
7 adcroft 1.23 # created by cnh 03/98
8     # adapted by aja 06/98
9     # modified by aja 01/00
10    
11     # Default lists
12 heimbach 1.38 set DISABLE = ( aim autodiff cal cost ctrl ecco exf grdchk )
13 adcroft 1.44 set DEFINES = ( )
14 adcroft 1.23 set ENABLE = ( )
15     set MODS = ( )
16    
17     # Grab variables/lists from .genmakerc
18     if (-r .genmakerc) source .genmakerc
19 cnh 1.1
20     # Process command-line arguments
21     set allargs=( $argv )
22     while ($#allargs)
23     set arg = $allargs[1]
24     switch ($arg)
25 adcroft 1.9 case -makefile:
26     set mfile = ( Makefile )
27     breaksw
28     case -makefile=*:
29     set mfile = ( `echo $arg | sed 's/-makefile=//' `)
30 cnh 1.1 breaksw
31     case -platform:
32     case -platform=:
33     echo "To change platform you must specify one with -platform="
34     echo "eg. -platform=sparc or -platform=mips"
35     exit
36     breaksw
37     case -platform*:
38 adcroft 1.23 if ($?platform) then
39     echo Option -platform=dir can only be specified once.; exit 1
40     endif
41 cnh 1.1 set platform = ( `echo $arg | sed 's/-platform=//' `)
42     breaksw
43 adcroft 1.23 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=*:
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=//' `)
55     breaksw
56     case -mods:
57     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 adcroft 1.24 set MODS = ( $MODS `echo $arg | sed 's/-mods=//' | sed 's/,/ /g' `)
64 adcroft 1.23 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 adcroft 1.24 set DISABLE = ( $DISABLE `echo $arg | sed 's/-disable=//' | sed 's/,/ /g' `)
73 adcroft 1.23 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 adcroft 1.40 case -ieee:
82     set IEEE
83     breaksw
84 adcroft 1.23 case -enable=*:
85 adcroft 1.24 set ENABLE = ( $ENABLE `echo $arg | sed 's/-enable=//' | sed 's/,/ /g' `)
86 adcroft 1.23 breaksw
87 cnh 1.1 case -mpi:
88     echo "Enabling MPI options"
89     set USEMPI
90     breaksw
91 adcroft 1.12 case -jam:
92     set include_jam_libs
93     echo "Including paths to JAM libraries"
94     breaksw
95 cnh 1.1 case -help:
96 adcroft 1.35 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 cnh 1.1 exit
121     breaksw
122     default:
123     echo "Unknown command-line option: " $arg
124     echo $0 "-help to show usage"
125     exit
126     breaksw
127     endsw
128     shift allargs
129     end
130 cnh 1.6
131 adcroft 1.23 # Default actions/options
132    
133     # If platform wasn't specified then determine platform type of the host
134     if (! $?platform) then
135 cnh 1.6 set platform = (`uname`)
136 adcroft 1.55 # This let's us distinguish between different Linux platforms
137     if ($platform == Linux) then
138     set machine = (`uname -m`)
139     set platform = ($platform'-'$machine)
140     endif
141 cnh 1.6 endif
142 adcroft 1.23 # If name of makefile wasn't specified then use default "Makefile"
143     if (! $?mfile) set mfile = ( Makefile )
144    
145 cnh 1.1 set mach = ( `uname -a` )
146     echo Operating system: $mach
147    
148     # Directories for source, includes, binaries and executables
149 adcroft 1.23 #
150     # If -rootdir wasn't specified then assume script is being run from bin
151     # but if it was supplied then we should place the executable in the build dir
152     if (! $?ROOTDIR) then
153 adcroft 1.26 set pwd=`pwd`
154 adcroft 1.29 if ($pwd:t == bin & -d ../model & -d ../eesupp & -d ../pkg) then
155     set ROOTDIR = ( .. )
156 adcroft 1.26 endif
157     endif
158     # Scan for logical ROOTDIR
159     if (! $?ROOTDIR) then
160     foreach dr (. .. ../.. ../../.. ../../../.. ../../../../..)
161     if (-d $dr/model & -d $dr/eesupp & -d $dr/pkg) then
162     set ROOTDIR = $dr
163     echo ROOTDIR was not specified. Setting ROOTDIR = \"$ROOTDIR\"
164     break
165     endif
166     end
167     endif
168     if (! $?ROOTDIR) then
169     echo Root directory was not specified and could not be determined.
170     echo Specify the root location of the model source with -rootdir=dir
171     exit 1
172 adcroft 1.23 endif
173     if (! -d $ROOTDIR) then
174     echo Root directory $ROOTDIR not found.;exit 1
175     endif
176     # If -mods wasn't specified then we will assume that we can find all the
177     # source code in the standard directories
178     if (! $?MODS) then
179     set SOURCEDIRS = ( )
180 adcroft 1.42 set INCLUDEDIRS = ( )
181 adcroft 1.23 else
182     set SOURCEDIRS = ( $MODS )
183 adcroft 1.42 set INCLUDEDIRS = ( $MODS )
184 adcroft 1.23 endif
185     if (! $?BUILDDIR) set BUILDDIR = ( . )
186     if (! -d $BUILDDIR) then
187     echo Build directory $BUILDDIR not found.;exit 1
188 adcroft 1.29 endif
189     if (! $?EXEDIR) then
190     set pwd=`pwd`
191     if ($pwd:t == bin & -d ../exe & $ROOTDIR == ..) then
192     set EXEDIR = ( ../exe )
193     else
194     set EXEDIR = ( . )
195     endif
196 adcroft 1.23 endif
197     if (! -d $EXEDIR) then
198     echo Executable directory $EXEDIR not found.;exit 1
199     endif
200     if (! $?TOOLSDIR) set TOOLSDIR = ( $ROOTDIR/tools )
201     if (! -d $TOOLSDIR) then
202     echo Tools directory $TOOLSDIR not found.;exit 1
203     endif
204     if (! $?EXECUTABLE) set EXECUTABLE = ( mitgcmuv )
205    
206 adcroft 1.35 # We have a special set of source files in eesupp/src which
207     # are generated from some template source files. We'll make them
208     # first so the appear as regular source code
209     if (-r $ROOTDIR/eesupp/src/Makefile) then
210     echo Making source files in eesupp from templates...
211     (cd $ROOTDIR/eesupp/src/; make) >& make_eesupp.errs
212     if ($status == 0) then
213     rm -f make_eesupp.errs
214     else
215     cat make_eesupp.errs
216     exit 2
217     endif
218     endif
219    
220 adcroft 1.23 # Now scan the standard source code tree
221     foreach dr ($SOURCEDIRS)
222     set adr=$dr
223     if (! -d $adr) then
224     echo mods directory $adr not found.; exit 1
225     endif
226 adcroft 1.35 echo Adding mods dir: $adr
227 adcroft 1.23 end
228     if (! $?PACKAGES) then
229 adcroft 1.35 set PACKAGES=()
230     foreach pkg (`cd $ROOTDIR/pkg; find . -type d | grep -v CVS | sed 's:\./::' | grep -v "\." | sort`)
231     if (-d $ROOTDIR/pkg/$pkg) set PACKAGES=($PACKAGES $pkg)
232     end
233 adcroft 1.23 endif
234     foreach dr ($PACKAGES)
235     set enable
236     foreach p ($DISABLE)
237 adcroft 1.31 if ($p != 'all' & ! -d $ROOTDIR/pkg/$p) then
238 adcroft 1.30 echo Specified package \"$p\" does not exist.
239     exit 1
240     endif
241 adcroft 1.23 if ($dr == $p) unset enable
242     if ($p == 'all') unset enable
243 adcroft 1.35 # The following allows entire trees to be disabled
244     if ($dr:h == $p) unset enable
245     if ($dr:h:h == $p) unset enable
246     if ($dr:h:h:h == $p) unset enable
247     if ($dr:h:h:h:h == $p) unset enable
248 adcroft 1.23 end
249     foreach p ($ENABLE)
250     if ($dr == $p) set enable
251     end
252     if ($?enable) then
253     set adr=$ROOTDIR/pkg/$dr
254     if (! -d $adr) then
255     echo Source directory $adr not found.; exit 1
256     endif
257 adcroft 1.35 echo Adding pkg dir: $adr
258 adcroft 1.23 set SOURCEDIRS = ($SOURCEDIRS $adr)
259     set INCLUDEDIRS = ($INCLUDEDIRS $adr)
260     else
261 adcroft 1.35 echo " *" Package \"$dr\" NOT enabled.
262 adcroft 1.44 switch ($dr)
263     case mom_fluxform:
264     set DEFINES = ($DEFINES '-DDISABLE_MOM_FLUXFORM'); breaksw
265     case mom_vecinv:
266 adcroft 1.50 set DEFINES = ($DEFINES '-DDISABLE_MOM_VECINV'); breaksw
267 adcroft 1.54 case generic_advdiff:
268     set DEFINES = ($DEFINES '-DDISABLE_GENERIC_ADVDIFF'); breaksw
269 adcroft 1.44 default:
270     breaksw
271     endsw
272 adcroft 1.23 endif
273 adcroft 1.30 end
274 jmc 1.33 if (! $?STANDARDDIRS) set STANDARDDIRS=(eesupp model)
275 adcroft 1.30 foreach dr ($STANDARDDIRS)
276     set adr=$ROOTDIR/$dr/src
277     if (! -d $adr) then
278     echo Source directory $adr not found.; exit 1
279     endif
280 adcroft 1.35 echo Adding src dir: $adr
281 adcroft 1.30 set SOURCEDIRS = ($SOURCEDIRS $adr)
282     set idr = `echo $adr | sed 's/src/inc/'`
283     set INCLUDEDIRS = ($INCLUDEDIRS $idr)
284 adcroft 1.23 end
285 cnh 1.1
286     # This is the generic configuration.
287     # Platform specific options are chosen below
288 adcroft 1.23 set LN = ( 'ln -s' )
289 cnh 1.1 set CPP = ( '/lib/cpp -P' )
290 cnh 1.53 set S64 = ( '$(TOOLSDIR)/set64bitConst.sh' )
291 cnh 1.1 set KPP = ( )
292     set FC = ( 'f77' )
293     set LINK = ( 'f77' )
294 adcroft 1.42 set INCLUDES = ( -I. )
295 cnh 1.1 set FFLAGS = ( )
296     set FOPTIM = ( )
297 adcroft 1.51 set CFLAGS = ( )
298 cnh 1.1 set KFLAGS1 = ( )
299     set KFLAGS2 = ( )
300     set LIBS = ( )
301     set KPPFILES = ( )
302     set NOOPTFILES = ( )
303     set NOOPTFLAGS = ( )
304     set RMFILES = ( )
305    
306     # We often want to use different compile/link options is using MPI
307     if ($?USEMPI) then
308     set USEMPI = ( '+mpi' )
309     set DEFINES = ( ${DEFINES} '-DALLOW_USE_MPI -DALWAYS_USE_MPI' )
310     else
311     set USEMPI
312     # set DEFINES = ( ${DEFINES} '-UALLOW_USE_MPI -UALWAYS_USE_MPI' )
313     endif
314    
315     # Platform specific options
316     switch ($platform$USEMPI)
317 adcroft 1.39 case OSF1+mpi:
318     echo "Configuring for DEC Alpha with MPI"
319     set LIBS = ( '-lfmpi -lmpi -lkmp_osfp10 -pthread' )
320 cnh 1.6 case OSF1:
321 cnh 1.1 echo "Configuring for DEC Alpha"
322     set CPP = ( '/usr/bin/cpp -P' )
323 adcroft 1.10 set DEFINES = ( ${DEFINES} '-DTARGET_DEC -DWORDLENGTH=1' )
324 adcroft 1.39 set KPP = ( )
325     set KPPFILES = ( )
326     set KFLAGS1 = ( )
327 cnh 1.1 set FC = ( 'f77' )
328 cnh 1.25 set FFLAGS = ( '-convert big_endian -r8 -extend_source -automatic -call_shared -notransform_loops -align dcommons' )
329 cnh 1.1 set FOPTIM = ( '-O5 -fast -tune host -inline all' )
330     set NOOPTFLAGS = ( '-O0' )
331 heimbach 1.20 set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F')
332 cnh 1.1 set RMFILES = ( '*.p.out' )
333     breaksw
334 cnh 1.6 case IRIX64+mpi:
335 cnh 1.1 echo "Configuring for SGI Mips with MPI"
336 adcroft 1.11 set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
337 cnh 1.1 set INCLUDES = ( '-I/usr/local/mpi/include' )
338     set FC = ( 'mpif77' )
339     set LINK = ( 'mpif77' )
340 adcroft 1.11 set FFLAGS = ( '-extend_source -bytereclen -r10000 -mips4' )
341 cnh 1.1 set FOPTIM = ( '-O3' )
342     set RMFILES = ( 'rii_files' )
343     breaksw
344 cnh 1.6 case IRIX64:
345 cnh 1.1 echo "Configuring for SGI Mips"
346 adcroft 1.11 set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
347 cnh 1.1 set INCLUDES = ( '-I/usr/local/mpi/include' )
348 adcroft 1.35 set FFLAGS = ( '-extend_source -mp -mpio -bytereclen -r10000 -mips4 -r8 -static' )
349 adcroft 1.11 set FOPTIM = ( '-O3' )
350     # set NOOPTFLAGS = ( '-O0' )
351     # set NOOPTFILES = ( 'barrier.F different_multiple.F ' \
352 heimbach 1.20 # 'external_fields_load.F' )
353 cnh 1.1 set RMFILES = ( 'rii_files' )
354     breaksw
355 heimbach 1.20 case o2:
356     case IRIX:
357     echo "Configuring for SGI O2 running IRIX 6.5"
358     set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
359     set FFLAGS = ( '-extend_source -bytereclen -r10000 -mips4' )
360     set FOPTIM = ( '-O2' )
361     set NOOPTFLAGS = ( '-O0' )
362     breaksw
363     case o2+mpi:
364     case IRIX+mpi:
365     echo "Configuring for SGI O2 running IRIX 6.5 with MPI"
366     set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
367     set FFLAGS = ( '-extend_source -bytereclen -r10000 -mips4' )
368     set FOPTIM = ( '-O2' )
369     set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F' )
370     set NOOPTFLAGS = ( '-O0' )
371     set LIBS = ( '-lmpi' )
372     breaksw
373     case o2k+mpi:
374     echo "Configuring for SGI Origin2000 running IRIX 6.5"
375     set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
376     set INCLUDES = ( '-I/usr/include' )
377     set FFLAGS = ( '-n32 -extend_source -bytereclen' )
378     set FOPTIM = ( '-O2' )
379     set NOOPTFILES = ( 'calc_mom_rhs.F' )
380     set NOOPTFLAGS = ( '-O1' )
381     set LIBS = ( '-lmpi -lscs' )
382     breaksw
383     case onyx:
384     case onyx+mpi:
385     echo "Configuring for SGI ONYX running IRIX64"
386     set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
387     set FFLAGS = ( '-extend_source -bytereclen -r10000 -64' )
388     set FOPTIM = ( '-O2' )
389     set NOOPTFLAGS = ( '-O0' )
390     set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F' )
391     set LIBS = ( '-lmpi' )
392     breaksw
393 cnh 1.6 case SunOS:
394 adcroft 1.23 set LN = ( '/usr/bin/ln -s' )
395 cnh 1.6 set CPP = ( '/usr/ccs/lib/cpp -P' )
396 cnh 1.52 set S64 = ( cat )
397     set DEFINES = ( ${DEFINES} '-DTARGET_SUN -DWORDLENGTH=4 -D_d=E' )
398     set FFLAGS = ( '-stackvar -explicitpar -vpara -e -u -noautopar -r8 -i4 -fsimple=0' )
399 adcroft 1.51 set FOPTIM = ( '-dalign -O3 -xarch=v9' )
400     set CFLAGS = ( '-dalign -O3 -xarch=v9' )
401     set NOOPTFLAGS = ( '-dalign -O0 -xarch=v9' )
402     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 aim_aim2dyn.F aim_dyn2aim.F aim_aim2dyn_exchanges.F aim_external_fields_load.F aim_calc_diags.F aim_external_forcing.F aim_do_atmos_physics.F aim_write_diags.F aim_do_inphys.F ')
403 cnh 1.6 breaksw
404     case SunOS+mpi:
405 adcroft 1.23 set LN = ( '/usr/bin/ln -s' )
406 cnh 1.1 set CPP = ( '/usr/ccs/lib/cpp -P' )
407 cnh 1.52 set S64 = ( cat )
408     set DEFINES = ( ${DEFINES} '-DTARGET_SUN -DWORDLENGTH=4 -D_d=E' )
409 cnh 1.1 set INCLUDES = ( '-I/usr/local/mpi/include' )
410     set LIBS = ( '-L/usr/local/mpi/lib/solaris/ch_shmem -lmpi -lthread' \
411 cnh 1.52 set FFLAGS = ( '-stackvar -explicitpar -vpara -e -u -noautopar -r8 -i4 -fsimple=0' )
412 adcroft 1.51 set FOPTIM = ( '-dalign -O3 -xarch=v9' )
413     set NOOPTFLAGS = ( '-dalign -O0 -xarch=v9' )
414 cnh 1.6 '-lsocket -lnsl' )
415 heimbach 1.47 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')
416 cnh 1.3 breaksw
417 cnh 1.6 case IRIX32:
418 cnh 1.3 echo "Configuring for SGI ONYX running IRIX64"
419 adcroft 1.11 set DEFINES = ( ${DEFINES} '-DTARGET_SGI -DWORDLENGTH=4' )
420 cnh 1.3 set INCLUDES = ( '-I/usr/include' )
421     set FFLAGS = ( '-extend_source -bytereclen -r10000 -64' )
422     set FOPTIM = ( '-O2' )
423     set NOOPTFLAGS = ( '-O0' )
424     set NOOPTFILES = ( 'barrier.F different_multiple.F ' \
425 heimbach 1.20 'external_fields_load.F' )
426 cnh 1.3 set LIBS = ( '-lmpi' )
427     breaksw
428 adcroft 1.11 case HP-UX+mpi:
429     set FC = ( 'mpif77' )
430     set LINK = ( 'mpif77' )
431     set INCLUDES = ( '-I/opt/mpi/include' )
432 cnh 1.6 case HP-UX:
433 cnh 1.3 echo "Configuring for HP Exemplar"
434     set CPP = ( '/usr/ccs/lbin/cpp -P' )
435 adcroft 1.11 set DEFINES = ( ${DEFINES} '-DTARGET_HP -DWORDLENGTH=4' )
436 cnh 1.3 set FFLAGS = ( '+es +U77 +Onoautopar +Oexemplar_model' \
437     '+Okernel_threads' )
438     set FOPTIM = ( '+O2' )
439 cnh 1.6 set NOOPTFLAGS = ( '+O0' )
440 cnh 1.3 set NOOPTFILES = ( 'barrier.F different_multiple.F' \
441 heimbach 1.20 'external_fields_load.F' )
442 cnh 1.1 breaksw
443 adcroft 1.55 case Linux-alpha+mpi:
444     echo "Configuring with MPI"
445     set LIBS = ( '-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich' )
446     set INCLUDES = ( '-I/usr/local/include' )
447     case Linux-alpha:
448     echo "Configuring for " $platform
449     set LN = ( '/bin/ln -s' )
450     set CPP = ( '/lib/cpp -traditional -P' )
451     set DEFINES = ( ${DEFINES} '-D_BYTESWAPIO -DWORDLENGTH=4' )
452     set FC = ( 'g77' )
453     set FFLAGS = ( ' ' )
454     if ($?IEEE) set FFLAGS = ( $FFLAGS '-ffloat-store' )
455     set FOPTIM = ( '-ffast-math -fexpensive-optimizations -fomit-frame-pointer -O3' )
456     set LINK = ( 'g77' )
457     breaksw
458     case Linux*+mpi:
459 adcroft 1.9 set LIBS = ( '-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich' )
460 adcroft 1.14 set INCLUDES = ( '-I/usr/local/include' )
461 adcroft 1.55 case Linux*:
462     echo "Configuring for " $platform
463 adcroft 1.23 set LN = ( '/bin/ln -s' )
464 adcroft 1.14 set CPP = ( '/lib/cpp -traditional -P' )
465 adcroft 1.11 set DEFINES = ( ${DEFINES} '-D_BYTESWAPIO -DWORDLENGTH=4' )
466 cnh 1.6 set FC = ( 'g77' )
467 adcroft 1.14 set FFLAGS = ( '-Wimplicit -Wunused -Wuninitialized' )
468 adcroft 1.40 if ($?IEEE) set FFLAGS = ( $FFLAGS '-ffloat-store' )
469     set FOPTIM = ( '-O3 -malign-double -funroll-loops' )
470 cnh 1.6 set LINK = ( 'g77' )
471     breaksw
472 adcroft 1.55 case Linux*+pgi+mpi:
473 adcroft 1.15 if ($?include_jam_libs) then
474 adcroft 1.35 set INCLUDES = ( '-I/usr/local/mpich-1.2.1/pgi_fortran_binding/include' )
475     set LIBS = ( '-L/usr/local/mpich-1.2.1/pgi_fortran_binding/lib/ -lfmpich -lmpich' )
476 adcroft 1.15 else
477     set INCLUDES = ( '-I/usr/local/include' )
478     set LIBS = ( '-L/usr/local/lib/LINUX/ch_p4/ -lfmpich -lmpich' )
479     endif
480 adcroft 1.55 case Linux*+pgi:
481     echo "Configuring for " $platform
482 adcroft 1.23 set LN = ( '/bin/ln -s' )
483 adcroft 1.14 set CPP = ( '/lib/cpp -traditional -P' )
484 adcroft 1.10 set DEFINES = ( ${DEFINES} '-DWORDLENGTH=4' )
485 cnh 1.6 set FC = ( 'pgf77' )
486 adcroft 1.23 set FFLAGS = ( '-byteswapio -r8 -Mnodclchk -Mextend' )
487 cnh 1.6 set FOPTIM = ( '-tp p6 -v -O2 -Munroll -Mvect=cachesize:512000,transform -Kieee' )
488     set LINK = ( 'pgf77' )
489 adcroft 1.13 breaksw
490     case T3E:
491     case sn6312:
492 adcroft 1.55 echo "Configuring for T3E"
493 adcroft 1.13 set CPP = ( '/opt/ctl/bin/cpp -P')
494     set DEFINES = ( ${DEFINES} '-DTARGET_T3E -DWORDLENGTH=4' )
495     set FC = ( 'f90' )
496     set LINK = ( 'f90' )
497     set FFLAGS = ( '-O 2,fusion' )
498 heimbach 1.18 breaksw
499     case T90:
500     case sn7113:
501 adcroft 1.55 echo "Configuring for T90"
502 heimbach 1.18 set FC = ( 'f90' )
503     set LINK = ( 'f90' )
504 adcroft 1.23 set LN = ( '/bin/ln -s' )
505 heimbach 1.19 set CPP = ( '/opt/ctl/bin/cpp -N -P' )
506     set DEFINES = ( ${DEFINES} '-DTARGET_CRAY_VECTOR -DWORDLENGTH=4' )
507     set FFLAGS = ( '-m3 -Rabc -N 132')
508 heimbach 1.18 set FOPTIM = ( '-O0' )
509     set NOOPTFLAGS = ( '-O0' )
510 heimbach 1.20 set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F')
511 heimbach 1.18 breaksw
512     case SV1:
513     case sn3002:
514     set FC = ( 'f90' )
515     set LINK = ( 'f90' )
516 adcroft 1.23 set LN = ( '/bin/ln -s' )
517 heimbach 1.19 set CPP = ( '/opt/ctl/bin/cpp -N -P' )
518     set DEFINES = ( ${DEFINES} '-DTARGET_CRAY_VECTOR -DWORDLENGTH=4' )
519     set FFLAGS = ( '-m3 -Rabc -ei -eI -s cf77types -N 132')
520 heimbach 1.18 set FOPTIM = ( '-O0' )
521     set NOOPTFLAGS = ( '-O0' )
522 heimbach 1.20 set NOOPTFILES = ( 'barrier.F different_multiple.F external_fields_load.F')
523 cnh 1.6 breaksw
524 cnh 1.1 default:
525     echo "Error: platform not recognized: uname -p = " $platform$USEMPI
526     exit
527     breaksw
528     endsw
529    
530     ###############################################################################
531     ## ##
532     ## Everything below here should not need to be changed. Platform specific ##
533     ## changes and code specific changes should be configured above this line. ##
534     ## ##
535     ###############################################################################
536    
537     # Convert lists of directories into command-line options
538     foreach inc ($INCLUDEDIRS)
539     set INCLUDES = ($INCLUDES -I$inc)
540     end
541 adcroft 1.23
542     # Search for source code
543     rm -rf .links.tmp;mkdir .links.tmp
544     echo "# This section creates symbolic links" > srclinks.tmp
545     echo "" >> srclinks.tmp
546     echo -n 'SRCFILES = ' > srclist.inc
547     echo -n 'CSRCFILES = ' > csrclist.inc
548 adcroft 1.41 echo -n 'HEADERFILES = ' > hlist.inc
549 adcroft 1.42 foreach dr ($SOURCEDIRS $INCLUDEDIRS .)
550 adcroft 1.23 set deplist=( )
551     foreach srcfile (`cd $dr; ls *.[hcF]`)
552     if (! -r .links.tmp/$srcfile) then
553     if (-f $dr/$srcfile) then
554     switch ($srcfile:e)
555     case F:
556     touch .links.tmp/$srcfile
557     set deplist=($deplist $srcfile)
558     echo ' \' >> srclist.inc
559     echo -n " " $srcfile >> srclist.inc
560     breaksw
561     case c:
562     touch .links.tmp/$srcfile
563     set deplist=($deplist $srcfile)
564     echo ' \' >> csrclist.inc
565     echo -n " " $srcfile >> csrclist.inc
566     breaksw
567     case h:
568 adcroft 1.41 touch .links.tmp/$srcfile
569     set deplist=($deplist $srcfile)
570     echo ' \' >> hlist.inc
571     echo -n " " $srcfile >> hlist.inc
572 adcroft 1.23 breaksw
573     endsw
574     endif
575     endif
576     end
577     if ($#deplist != 0) then
578     echo "# These files are linked from $dr" >> srclinks.tmp
579     echo $deplist':' >> srclinks.tmp
580     echo ' $(LN) '$dr'/$@ $@' >> srclinks.tmp
581     endif
582 cnh 1.1 end
583 adcroft 1.23 rm -rf .links.tmp
584     echo "" >> srclist.inc
585     echo "" >> csrclist.inc
586 adcroft 1.41 echo "" >> hlist.inc
587 cnh 1.1
588     set THISHOSTNAME = ( `hostname` )
589     set THISCWD = ( `pwd` )
590     set THISDATE = ( `date` )
591    
592 adcroft 1.23 if (-r $mfile) mv -f $mfile $mfile.bak
593 cnh 1.1 ###########################################
594     ## This is the template for the makefile ##
595     ###########################################
596     echo Creating makefile: $mfile
597     echo "# Multithreaded + multi-processing makefile for $mach" > ${mfile}
598 adcroft 1.23 echo "# This makefile was generated automatically on" >> ${mfile}
599 cnh 1.1 echo "# $THISDATE" >> ${mfile}
600     echo "# by the command:" >> ${mfile}
601     echo "# ${0} $argv" >> ${mfile}
602     echo "# executed by:" >> ${mfile}
603     echo "# $USER@${THISHOSTNAME}:${THISCWD}" >> ${mfile}
604     cat >> ${mfile} <<EOF
605     #
606     # BUILDDIR : Directory where object files are written
607     # SOURCEDIRS : Directories containing the source (.F) files
608     # INCLUDEDIRS : Directories containing the header-source (.h) files
609     # EXEDIR : Directory where executable that is generated is written
610     # EXECUTABLE : Full path of executable binary
611     #
612     # CPP : C-preprocessor command
613     # INCLUDES : Directories searched for header files
614     # DEFINES : Macro definitions for CPP
615     # KPP : Special preprocessor command (specific to platform)
616     # KFLAGS : Flags for KPP
617     # FC : Fortran compiler command
618     # FFLAGS : Configuration/debugging options for FC
619     # FOPTIM : Optimization options for FC
620     # LINK : Command for link editor program
621     # LIBS : Library flags /or/ additional optimization/debugging flags
622    
623 adcroft 1.23 ROOTDIR = ${ROOTDIR}
624     BUILDDIR = ${BUILDDIR}
625     SOURCEDIRS = ${SOURCEDIRS}
626 cnh 1.1 INCLUDEDIRS = ${INCLUDEDIRS}
627 adcroft 1.23 EXEDIR = ${EXEDIR}
628     EXECUTABLE = \$(EXEDIR)/${EXECUTABLE}
629     TOOLSDIR = ${TOOLSDIR}
630 cnh 1.1
631 adcroft 1.12 EOF
632    
633    
634     # JAM libraries on Hyades
635     if ($?include_jam_libs) then
636     cat >> ${mfile} <<EOF
637     # extra stuff for Hyades ............................................
638     HYADES_DIR = /u/u0/cnh/jam-lib/software
639 adcroft 1.16 HYADES_DIR = /u/u0/cnh/jam-lib-twoproc
640 adcroft 1.35 HYADES_DIR = /usr/local/jamlib/current/dual_proc
641 adcroft 1.12 WORK_DIR = \$(HYADES_DIR)
642     DEPOSIT_DIR = linux_bin
643    
644     STARTXOBJDIR = startx_util/\$(DEPOSIT_DIR)
645     STARTXOBJ = \$(WORK_DIR)/startx_util/\$(DEPOSIT_DIR)/startx_timer.o \
646     \$(WORK_DIR)/startx_util/\$(DEPOSIT_DIR)/startx_util.o \
647     \$(WORK_DIR)/startx_util/\$(DEPOSIT_DIR)/client.o \
648     \$(WORK_DIR)/startx_util/\$(DEPOSIT_DIR)/csutil.o
649    
650     JAMOBJDIR = jam/\$(DEPOSIT_DIR)
651     JAMOBJ = \$(WORK_DIR)/jam/\$(DEPOSIT_DIR)/jam_init.o \
652     \$(WORK_DIR)/jam/\$(DEPOSIT_DIR)/jam_kernel.o \
653     \$(WORK_DIR)/jam/\$(DEPOSIT_DIR)/jam_malloc.o \
654     \$(WORK_DIR)/jam/\$(DEPOSIT_DIR)/jam_vmalloc.o \
655     \$(WORK_DIR)/jam/\$(DEPOSIT_DIR)/jam_mutex.o
656    
657     JAMCOBJDIR = jam_collective/\$(DEPOSIT_DIR)
658     JAMCOBJ = \$(WORK_DIR)/jam_collective/\$(DEPOSIT_DIR)/jam_collective.o
659    
660     XLIBS = \$(STARTXOBJ) \$(JAMOBJ) \$(JAMCOBJ)
661    
662     # ..................................................................
663    
664     EOF
665     endif
666    
667    
668     cat >> ${mfile} <<EOF
669 cnh 1.1 # Unix ln (link)
670     LN = ${LN}
671     # C preprocessor
672 cnh 1.52 CPP = cat \$< | ${S64} | ${CPP}
673 cnh 1.1 # Special preprocessor (KAP on DECs, FPP on Crays)
674     KPP = ${KPP}
675     # Fortran compiler
676     FC = ${FC}
677     # Link editor
678     LINK = ${LINK}
679    
680     # Defines for CPP
681     DEFINES = ${DEFINES}
682     # Includes for CPP
683     INCLUDES = ${INCLUDES}
684     # Flags for KPP
685     KFLAGS1 = ${KFLAGS1}
686     KFLAGS2 = ${KFLAGS2}
687     # Optim./debug for FC
688     FFLAGS = ${FFLAGS}
689     FOPTIM = ${FOPTIM}
690 adcroft 1.51 # Flags for CC
691     CFLAGS = ${CFLAGS}
692 cnh 1.1 # Files that should not be optimized
693     NOOPTFILES = ${NOOPTFILES}
694     NOOPTFLAGS = ${NOOPTFLAGS}
695     # Flags and libraries needed for linking
696 adcroft 1.15 LIBS = ${LIBS} \$(XLIBS)
697 cnh 1.1
698     EOF
699    
700 heimbach 1.19 cat srclist.inc >> ${mfile}
701     cat csrclist.inc >> ${mfile}
702 adcroft 1.41 cat hlist.inc >> ${mfile}
703 heimbach 1.19 echo 'F77FILES = $(SRCFILES:.F=.f)' >> ${mfile}
704     echo 'OBJFILES = $(SRCFILES:.F=.o) $(CSRCFILES:.c=.o)' >> ${mfile}
705    
706 adcroft 1.43 rm -f srclist.inc csrclist.inc hlist.inc flist.tmp clist.tmp
707 cnh 1.1
708     cat >> ${mfile} <<EOF
709    
710     .SUFFIXES:
711 cnh 1.5 .SUFFIXES: .o .f .p .F .c
712 cnh 1.1
713     all: \$(EXECUTABLE)
714     \$(EXECUTABLE): \$(OBJFILES)
715     \$(LINK) -o \$@ \$(FFLAGS) \$(FOPTIM) \$(OBJFILES) \$(LIBS)
716     depend:
717     @make links
718 adcroft 1.54 makedepend -o .f \$(DEFINES) \$(INCLUDES) \$(SRCFILES)
719 adcroft 1.32
720 adcroft 1.41 links: \$(SRCFILES) \$(CSRCFILES) \$(HEADERFILES)
721 heimbach 1.46
722     small_f: \$(F77FILES)
723 heimbach 1.19
724 adcroft 1.45 output.txt: \$(EXECUTABLE)
725 adcroft 1.48 @printf 'running ... '
726 adcroft 1.45 @\$(EXECUTABLE) > \$@
727 heimbach 1.19
728 cnh 1.1 clean:
729     -rm -rf *.o *.f *.p ${RMFILES}
730 cnh 1.6 Clean:
731     @make clean
732 adcroft 1.32 @make cleanlinks
733 adcroft 1.23 -rm -f Makefile.bak
734 adcroft 1.12 CLEAN:
735     @make Clean
736 adcroft 1.28 -find \$(EXEDIR) -name "*.meta" -exec rm {} \;
737     -find \$(EXEDIR) -name "*.data" -exec rm {} \;
738 adcroft 1.23 -rm -f \$(EXECUTABLE)
739 adcroft 1.32
740     makefile:
741     ${0} $argv
742     cleanlinks:
743     -find . -type l -exec rm {} \;
744 cnh 1.1
745     # The normal chain of rules is ( .F - .f - .o )
746     .F.f:
747 cnh 1.6 \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@
748 cnh 1.1 .f.o:
749     \$(FC) \$(FFLAGS) \$(FOPTIM) -c \$<
750 adcroft 1.51 .c.o:
751     \$(CC) \$(CFLAGS) -c \$<
752 cnh 1.1
753     # Special exceptions that use the ( .F - .p - .f - .o ) rule-chain
754     .F.p:
755 cnh 1.6 \$(CPP) \$(DEFINES) \$(INCLUDES) > \$@
756 cnh 1.1 .p.f:
757     \$(KPP) \$(KFLAGS1)\$@ \$(KFLAGS2) \$<
758     EOF
759    
760     # Make list of "exceptions" that need ".p" files
761     foreach sf ($KPPFILES)
762     set fname=( ${sf:t} )
763     echo "${fname:r}.f: ${fname:r}.p" >> ${mfile}
764     end
765     foreach sf ($NOOPTFILES)
766     set fname=( ${sf:t} )
767     echo "${fname:r}.o: ${fname:r}.f" >> ${mfile}
768     echo ' $(FC) $(FFLAGS) $(NOOPTFLAGS) -c $<' >> ${mfile}
769     end
770 adcroft 1.23 echo "" >> ${mfile}
771    
772     # Add rules for links
773     cat srclinks.tmp >> ${mfile}
774     rm -f srclinks.tmp
775    
776     echo "" >> ${mfile}
777 cnh 1.1 echo "# DO NOT DELETE" >> ${mfile}
778    
779     exit

  ViewVC Help
Powered by ViewVC 1.1.22