From 359adb4186fc9ad6b2351f6880d8a5ebcf3cb5ea Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 26 Apr 2001 16:45:43 +0000 Subject: Initial revision --- autogen.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 000000000..d0df72a92 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# +echo "Generating build information using aclocal, automake and autoconf" +echo "This may take a while ..." + +# Touch the timestamps on all the files since CVS messes them up +directory=`dirname $0` +touch $directory/configure.in + +# Regenerate configuration files +aclocal +automake --foreign --include-deps +autoconf +(cd test; aclocal; automake --foreign --include-deps; autoconf) + +# Run configure for this platform +#./configure $* +echo "Now you are ready to run ./configure" -- cgit v1.2.1