#!/bin/csh
#
#
#
if($#argv < 2) then
        echo "  "
        echo "    This command requires 2 arguments:"
        echo "       - the program (e.g., sisim.f)"
        echo "       - the output with all subroutines (e.g., sisima.f)"
        echo "  "
        exit
endif
set OUTFILE=$argv[$#argv]

cp $1 $2
cat ~clayton/gslib2/gslib/*.f >> $2
