#! /bin/sh
# Machine dependent environment variables to control 
# making of CRISP sources.
#
# This file is for generic BSD machines.
########
# 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
###########
#Use following definition if you want to use the GNU C compiler
CC="gcc -W -pedantic -ansi -O -pipe"
#CC=cc
# Uncomment following line if using GNU cc. Stops you having problems
# compiling the ioctl code when using -ansi.
#TRADITIONAL=-traditional
O=o
G="-O2"
LDFLAGS=
SHLIB=
DIR=`pwd`
PATH=$DIR:$DIR/crunch:$PATH
export LDFLAGS SHLIB G O CC TRADITIONAL PATH NO_FLOAT_MATH
