summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2005-05-06 01:46:32 +0000
committerKevin E Martin <kem@kem.org>2005-05-06 01:46:32 +0000
commit474a31667a8addb29a0f115790df2910400c4081 (patch)
tree9f752507a3d9b151bf5c256f2c69b80bc27e6f55 /autogen.sh
parentbe09530f849ec00001fc0575816030b7a5dde05c (diff)
downloadxorg-proto-xextproto-474a31667a8addb29a0f115790df2910400c4081.tar.gz
Initial build system files for proto module.
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 "$@"