]> git.mxchange.org Git - simgear.git/commitdiff
Initial revision.
authorcurt <curt>
Sat, 29 Dec 2001 03:35:31 +0000 (03:35 +0000)
committercurt <curt>
Sat, 29 Dec 2001 03:35:31 +0000 (03:35 +0000)
autogen.sh [new file with mode: 0755]

diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..22d20ab
--- /dev/null
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+echo "Running aclocal"
+aclocal
+
+echo "Running autoheader"
+autoheader
+
+echo "Running automake"
+automake --add-missing
+
+echo "Running autoconf"
+autoconf
+
+echo ""
+echo "======================================"
+
+if [ -f config.cache ]; then
+    echo "config.cache exists.  Removing the config.cache file will force"
+    echo "the ./configure script to rerun all it's tests rather than using"
+    echo "the previously cached values."
+    echo ""
+fi
+
+echo "Now you are ready to run './configure'"
+echo "======================================"