/
wizshell/
wizshell/binsrc/
wizshell/binsrc/elvis-1.7/doc/
wizshell/docs/help/
wizshell/etc/
wizshell/src/util/
#!/bin/sh
#  Script to configure the tcp part of the shawing package 

CFLAGS=
MAKE="echo \"Done.  Type 'make' to build\"" 

echo "Making configuration..."

while [ $# -gt 0 ]
  do case $1 in
       -d) CFLAGS=-DDEBUG
           echo "Configuring for debug mode."
           shift;;
       -m) MAKE=make
           shift;;
        *)  echo "Usage: Configure [-d] [-m]"
            exit;;
     esac
done

cc $CFLAGS -o config config.c
if ./config
  then eval $MAKE
fi
rm -f config