summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJordan Crouse <jordan.crouse@amd.com>2006-08-04 14:23:40 -0600
committerJordan Crouse <jordan.crouse@amd.com>2006-08-04 14:24:20 -0600
commit7a49bf6205d77a22b07c785f2cb589abd8671667 (patch)
treebf9968837ee04b1a67b2b043799947247250c3d8 /autogen.sh
parentd67ec33ef47086469446f0bd692ec15581124424 (diff)
PATCH: Remove the build files that shouldn't be in the repository
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 "$@"