#!/bin/sh
# $Id: autogen.sh 1707 2004-05-31 14:26:36Z skyjake $

# Remove any previously created cache files
test -w config.cache && rm config.cache
test -w config.cross.cache && rm config.cross.cache

# Regenerate configuration files
aclocal
autoheader
libtoolize --automake --ltdl
automake --foreign -a
autoconf

echo "Now you are ready to run \"cd Build; ../configure\"."
