summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMatthew Allum <mallum@polystyrene.(none)>2006-08-04 22:24:26 +0100
committerMatthew Allum <mallum@polystyrene.(none)>2006-08-04 22:24:26 +0100
commit0808093cbf79e2f18e79b0aa906770d2766638fc (patch)
treef6bd73a610e43dc9fbc04b8a0feb42b0bdf16ca7 /autogen.sh
Initial import from CVS
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..904cd67
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,12 @@
+#! /bin/sh
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+
+autoreconf -v --install || exit 1
+cd $ORIGDIR || exit $?
+
+$srcdir/configure --enable-maintainer-mode "$@"