#!/bin/csh

#  These options are for a linux machine using the Portland Group compiler

set FC = "pgf90"

set FCFLAGS = "-Mfree -O2"

cp singleton.F onefile.F
cat getperts.F >> onefile.F
${FC} ${FCFLAGS} onefile.F

echo
echo "Type this on the command line:"
echo
echo "     setenv STATIC_RANDOM_SEED yes"
echo
echo "to get the same random numbers every time."
echo

