initial import; functional but not finished
[allocwithin] / bootstrap
diff --git a/bootstrap b/bootstrap
new file mode 100755 (executable)
index 0000000..0060d18
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,14 @@
+#!/bin/sh
+# This script is used to regenerate autotools stuff
+
+LIBTOOLIZE=libtoolize
+case `uname -s` in
+    Darwin)     LIBTOOLIZE=glibtoolize ;;
+esac
+
+aclocal -I m4 \
+&& ${LIBTOOLIZE} --copy \
+&& automake --add-missing --copy \
+&& autoheader \
+&& autoconf
+