forked from HYCOM/HYCOM-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Make_ncdf.csh
executable file
·46 lines (46 loc) · 978 Bytes
/
Make_ncdf.csh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/csh
#set echo
#
# --- Usage: ./Make_ncdf.csh >& Make_ncdf.log
# --- but first edit ./Make_ncdf.src for this machine.
#
# --- make all HYCOM pre/post processing executables that require NetCDF.
#
# --- set ARCH to the correct value for this machine.
#
source Make_all.src
#
printenv ARCH
#
if (! -e ./config/${ARCH}_setup) then
echo "ARCH = " $ARCH " is not supported"
exit 1
endif
#
# --- set NCDF to the correct value for this machine.
#
source Make_ncdf.src
#
printenv NCDF
#
#if (! -e ${NCDF}/lib/libnetcdf.a) then
# echo "NCDF = " $NCDF " is not correct"
# exit 2
#endif
#
setenv A $cwd
#
foreach d ( archive cice force relax topo )
echo "PROCESSING ${d}/src:"
cd ${A}/${d}/src
csh Make_ncdf.csh >&! Make_ncdf.log
cat Make_ncdf.log
end
#
# ./bin/Make_ncdf.csh does not use Make_ncdf.src, but
# should not need editing for any supported machine type.
#
echo "PROCESSING bin:"
cd ${A}/bin
csh Make_ncdf.csh >&! Make_ncdf.log
cat Make_ncdf.log