#! /bin/sh

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PKG_NAME="elucidate"

REQUIRED_AUTOMAKE_VERSION=1.7 REQUIRED_GETTEXT_VERSION=0.10.36

rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh
rm -rf m4

mkdir m4

touch README

echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
echo "Running autoheader..." ; autoheader || exit 1
echo "Running autoconf..." ; autoconf || exit 1
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1

if [ -z "$NOCONFIGURE" ]; then
	./configure "$@"
fi
