#!/bin/csh -f
# 
# HP script to compile and link HDF FORTRAN file using binaries installed
# in DIR for HP-UX 9.03.
#
# Required option: FORTRAN file to be compiled, without the ".f" extension
#
set COMPILER=f77
set FFLAGS='-O'
set DIR=
#
${COMPILER} ${FFLAGS} -o $1 $1'.f'  ${DIR}/lib/libmfhdf.a ${DIR}/lib/libdf.a ${DIR}/lib/libjpeg.a ${DIR}/lib/libz.a

