#!/bin/sh
# this sets up the compile for MacOS X
set echo
CC="cc"
CFLAGS="-pipe -g"
CXX="$CC"
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure
unset echo