#! /bin/sh
# Machine dependent environment variables to control 
# making of CRISP sources.
#
# This file is for generic System V systems. It has been tested under
# Interactive Unix V.3 rel 2.2. If you have a pre-V.3 system (i.e. without
# shared libraries) then you should comment out the SHLIB= definition
# below.
#
SHLIB=-lc_s 
########
# 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
########
#  Select one of following for your system.
CC=cc
#CC="gcc -ansi -W -Wall -pedantic"
########
#  Select one of following for your system.
#G=-g; export G
G=-O; export G
########
DIR=`pwd`
PATH=$DIR:$DIR/crunch:$PATH
export SHLIB CC PATH NO_FLOAT_MATH
