summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSam Lantinga <slouken@lokigames.com>2001-04-26 16:45:43 +0000
committerSam Lantinga <slouken@lokigames.com>2001-04-26 16:45:43 +0000
commit359adb4186fc9ad6b2351f6880d8a5ebcf3cb5ea (patch)
tree5ef8210ef050b558167c3483a85ad96961cdda68 /autogen.sh
downloadsdl-359adb4186fc9ad6b2351f6880d8a5ebcf3cb5ea.tar.gz
Initial revision
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh18
1 files changed, 18 insertions, 0 deletions
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"