#!/bin/sh
# Copyright 2002, 2003 Herbert Straub
if [ -f config.cache ]; then
rm config.cache
fi
if [ -f Makefile ]; then
make clean
fi
echo "libtoolize..."
if test `uname -s` = Darwin; then
glibtoolize --automake
else
${LIBTOOLIZE} --automake
fi
echo "aclocal..."
${ACLOCAL} ${ACLOCAL_FLAGS}
echo "autoheader..."
${AUTOHEADER}
echo "automake..."
${AUTOMAKE} --add-missing
echo "autoconf..."
${AUTOCONF}
echo "Next run ./configure"
echo "Next run make"