Details | Last modification | View Log | RSS feed
#!/bin/csh
module load pgi/9.0-1
set tool = newtime
\rm -f ${tool}
echo "pgf90 -O -o ${tool} ${tool}.f "
pgf90 -O -o ${tool} ${tool}.f
if ( ! -f ${tool} ) then
echo "ERROR: compilation of <$tool> failed... exit"
exit 1
endif
exit 0