forked from wrf-model/WPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clean
executable file
·73 lines (59 loc) · 1.72 KB
/
clean
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/csh -f
set DEV_TOP = `pwd`
set TOUCH = ORIG
if ( ! -e configure.wps ) then
touch configure.wps
set TOUCH = TOUCH
endif
set nonomatch
set DIRS = ( geogrid ungrib metgrid ungrib ungrib util util util util util util util util )
set EXES = ( geogrid ungrib metgrid g1print g2print plotfmt plotgrids mod_levs rd_intermediate avg_tsfc calc_ecmwf_p height_ukmo int2nc )
set i = 1
foreach dir ( $DIRS )
if ( -d $dir ) then
( cd $dir ; make -i DEV_TOP="${DEV_TOP}" TARGET="$EXES[$i].exe" clean )
endif
/bin/rm -f $EXES[$i].exe
if ( $EXES[$i] == "g1print" || $EXES[$i] == "g2print" ) then
/bin/rm -f util/$EXES[$i].exe
endif
@ i ++
end
#rm gmeta
#if ( -e GRIBFILE.AAA ) then
# /bin/rm -f GRIBFILE.[A-Z][A-Z][A-Z]
#endif
#/bin/rm -f FILE:[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]_[0-9][0-9] >& /dev/null
#if ( -e Vtable ) then
# /bin/rm -f Vtable
#endif
#foreach core ( em nmm )
# foreach io_form ( nc bin grib )
# /bin/rm -f geo_${core}.d[0-9][0-9].${io_form} >& /dev/null
# /bin/rm -f met_${core}.d[0-9][0-9].*.${io_form} >& /dev/null
# end
#end
#if ( -e geogrid.log ) then
# /bin/rm -f geogrid.log
#endif
#if ( -e metgrid.log ) then
# /bin/rm -f metgrid.log
#endif
if ( "$1" == '-a' ) then
/bin/rm -rf ./netcdf_links
foreach dir ( $DIRS )
if ( -d $dir ) then
( cd $dir ; make -i DEV_TOP="${DEV_TOP}" TARGET="${dir}.exe" superclean >& /dev/null )
endif
if { test -h ${dir}.exe } then
/bin/rm -f ${dir}.exe
endif
end
if ( ( -e configure.wps ) && ( $TOUCH != TOUCH ) ) then
/bin/cp -p configure.wps configure.wps.backup
/bin/rm -f configure.wps
endif
endif
if ( ( $TOUCH == TOUCH ) && ( -e configure.wps ) ) then
/bin/rm -f configure.wps
endif