summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index a01b11cb..00000000
--- a/autogen.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-pushd $srcdir
-autoreconf -vif || exit 1
-
-popd
-
-if test -z "$NOCONFIGURE"; then
- $srcdir/configure "$@" && echo "Now type \`make' to compile" || exit 1
-fi