summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2005-05-06 01:46:30 +0000
committerKevin E Martin <kem@kem.org>2005-05-06 01:46:30 +0000
commit79c89e7f8bd4a291cc58bc18727503ab853764db (patch)
tree41148584717adc0878e770be83d11b9a59887acf /autogen.sh
parentf8419f84622bf0b65e1ed62c1828d041613a3e01 (diff)
downloadxorg-proto-fontsproto-79c89e7f8bd4a291cc58bc18727503ab853764db.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 "$@"