summaryrefslogtreecommitdiff
path: root/reconf
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2011-09-18 00:21:12 +0000
committer <>2014-04-01 14:15:08 +0000
commit5d498a6d7449d44a9278909dd10530ef0a19de29 (patch)
tree416685c8d22c7b5f32e994c9c4d6f1dbc5286c76 /reconf
downloaditzam-tarball-master.tar.gz
Imported from /home/lorry/working-area/delta_itzam-tarball/libitzam-6.0.4.tar.gz.HEADlibitzam-6.0.4master
Diffstat (limited to 'reconf')
-rwxr-xr-xreconf17
1 files changed, 17 insertions, 0 deletions
diff --git a/reconf b/reconf
new file mode 100755
index 0000000..a760fda
--- /dev/null
+++ b/reconf
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+#-- remove old configuration files
+#
+rm -f depcomp missing install-sh mkinstalldirs libtool acconfig.h
+rm -f aclocal.m4 configure Makefile.in config.guess config.cache ltmain.sh config.sub
+rm -rf autom4te.cache Makefile Makefile.in *.lo
+#
+#-- regenerate configuration
+#
+aclocal 2> /dev/null
+libtoolize --force
+automake --foreign --copy --add-missing
+autoconf
+./configure $1
+#
+#-- end