
if ( "$TARGETHOST" == "none" ) then
   set TARGETHOST="localhost"
endif

if ( "$MPIF77" == "mpif77" ) then
   if ( ! -e `sh -c 'which "$MPIF77"; exit 0'` ) then
       set MPIF77="openmpif77"
   endif
endif

if ( "$MPIF77_FLAGS" == "none" ) then
   set MPIF77_FLAGS="-g -O3 -ffast-math"
endif

if ( "$MPIF90" == "mpif90" ) then
   if ( ! -e `sh -c 'which "$MPIF90"; exit 0'` ) then
       set MPIF90="openmpif90"
   endif
endif

if ( "$MPIF90_FLAGS" == "none" ) then
   set MPIF90_FLAGS="-g -O3 -ffast-math"
endif

if ( "$MPICC" == "mpicc" ) then
   if ( ! -e `sh -c 'which "$MPICC"; exit 0'` ) then
       set MPICC="openmpicc"
   endif
endif

if ( "$MPICC_FLAGS" == "none" ) then
   set MPICC_FLAGS="-g -O3 -ffast-math"
endif




