#! /bin/sh
#This file is part of the GP2C package
#
#This stupid shell script is Public Domain.
#

if test ! -f src/gp2c; then
cat <<EOF 1>&2
gp2c has not been compiled.
Please type
./configure
make
to compile it.
EOF
exit 1;
fi
GP2C_FUNC_DSC=desc/func.dsc src/gp2c $*
