summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDeron <djlocal@djlaptop.chn.comcast.net>2006-11-16 10:00:18 -0800
committerDeron <djlocal@djlaptop.chn.comcast.net>2006-11-16 10:00:18 -0800
commit4897f5579cd772cc3761e12ec52d865785082fe9 (patch)
treed9badc361f5b7a03b8184ba03d60e59b7aa3781f /autogen.sh
Initial commit
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 "$@"