#! /bin/sh
# Machine dependent environment variables to control 
# making of CRISP sources.
#
# This file is for generic System V systems, viz:
#
#	Microport Unix V.3/386
#	Interactive Unix V.3/386
########
# Uncomment out the following line if you don't want the floating point
# library to be included. This disables the sin(), cos(), tan(), etc
# functions but otherwise doesn't affect crisp (except the floating
# point calculator).
#NO_FLOAT_MATH=-DNO_FLOAT_MATH
########
SHLIB="-linet -lc_s"
#SHLIB="-linet"
########
#  Select one of following for your system.
#CC=cc
CC="gcc -pipe -ansi -W -Wall -pedantic"
########
#  Select one of following for your system.
#G=-g; export G
G=-O; export G
########
export SHLIB CC
DIR=`pwd`
PATH=$DIR:$DIR/crunch:$PATH
export SHLIB CC PATH NO_FLOAT_MATH
