summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2013-05-04 21:39:27 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2013-05-04 21:39:27 +0000
commitfec6336699f34758d3e6cb41b2edf902fedb9035 (patch)
tree8256c1dbf3ca7c9e58a3dbecf07cf826fb2e0ce2 /bootstrap
parent7dbffd7e2b0067e834801617c5c486e3177f6709 (diff)
downloadlibical-master.tar.gz
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