Subversion Repositories lagranto.ecmwf

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
37 michaesp 1
#!/bin/csh
2
 
3
module load pgi/9.0-1
4
set tool = newtime
5
 
6
\rm -f ${tool}
7
 
8
echo "pgf90 -O -o ${tool} ${tool}.f "  
9
pgf90 -O -o ${tool} ${tool}.f    
10
 
11
if ( ! -f ${tool} ) then
12
  echo "ERROR: compilation of <$tool> failed... exit"
13
  exit 1
14
endif
15
 
16
exit 0