summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap30
1 files changed, 15 insertions, 15 deletions
diff --git a/bootstrap b/bootstrap
index 4672f64..b9758cb 100755
--- a/bootstrap
+++ b/bootstrap
@@ -8,27 +8,27 @@
# Remove any vestiges of pre-6.05 build environments
rm -f .libs modules *.so *.lo *.la 2>/dev/null
-
-echo ... running aclocal ...
-aclocal
-
-echo ... running liboolize ...
-libtoolize --force
-
-echo ... running autoheader ...
-autoheader
-
-echo ... running automake ...
-automake
-
-echo ... running autoconf ...
-autoconf
+echo ... running autoreconf ...
+autoreconf --verbose --force --install
# If your autoconf version changes, the autom4te.cache stuff will mess you up.
# Get rid of it.
echo ... removing autoheader cache files ...
rm -rf autom4te*.cache
+# echo ... pre-building yacc files ...
+# for x in src/*/*.y
+# do
+# echo Pre-building $x
+# ( cd `dirname $x` && yacc -o `basename $x |sed 's/y$/c/g' ` `basename $x` )
+# done
+#
+# echo ... pre-building lex files ...
+# for x in src/*/*.l
+# do
+# echo Pre-building $x
+# ( cd `dirname $x` && lex -o`basename $x |sed 's/l$/c/g' ` `basename $x` )
+# done
echo
echo This script has been tested with autoconf 2.53 and