#!/bin/sh



if [ -f Blind.c ] ; then
  make clean  # Start fresh
  # Comment me out if you want a non-forecast blind.dbg
  make PREPROC=-DPREPROC SMART=-DSMART FORECAST=-DFORECAST dbg-plus
  # Uncomment me if you want a non-forecast blind.dbg
  # make PREPROC=-DPREPROC SMART=-DSMART blind.dbg
  make clean # Do this so that the .KEEP_STATE stuff doesn't screw us
  make PREPROC= SMART= FORECAST= Blind
else
  echo "Run me from the source directory!"
  exit 1
fi
