Explicitly cast function pointer to (void *) in SET_WCB since all callbacks stored...
[freeglut] / autogen.sh
index a5f48af..d0d1d98 100755 (executable)
@@ -1,6 +1,12 @@
-set  -x                      &&
-autoheader                   &&
-aclocal                      &&
-libtoolize  --copy  --force  &&
-automake  --add-missing      &&
+#!/bin/sh
+#
+echo "Generating build information using aclocal, automake and autoconf"
+echo "This may take a while ..."
+
+aclocal
+autoheader
+libtoolize  --copy  --force
+automake  --add-missing
 autoconf
+
+echo "Now you are ready to run ./configure"