#!/bin/sh

# $Id: a,v 1.15 2002/03/28 02:11:06 rossta Exp $

if test -f .configure ; then
	PARAMS=`cat .configure`
fi
if test "$1" != ""; then
	PARAMS="$PARAMS $@"
fi
if test "$PARAMS" != "" ; then
	echo Executing: ./configure $PARAMS
fi

./aclean
./autogen.sh && \
./configure $PARAMS $GRAPEVINE_CONFIGURE_OPTIONS && \
make clean
