#!/bin/sh
# (re)make the autoconf configuration files.
# Used by fist maintainers only!
#
# Erez Zadok <ezk@cs.columbia.edu>
#
#set -x

FILE=include/fist.h

if [ ! -f $FILE ]; then
	cd ..
fi
if [ ! -f $FILE ]; then
	cd ..
fi
if [ ! -f $FILE ]; then
	echo "wrong directory!"
	exit 1
fi

cd aux && gmake $*
