summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2005-11-17 13:32:02 +0000
committerThomas Schwinge <tschwinge@gnu.org>2005-11-17 13:32:02 +0000
commit8ce4419f7fb672f3e23b66f03850038c0de07e2a (patch)
treef64ee9394b9c6e862aff5dbb9da5d98bdf733582
parent496aec28f69d08d32f260a5998ee661eef4fd58e (diff)
Removed. Use `autoreconf -i'.
-rwxr-xr-xautogen.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 64075d725..000000000
--- a/autogen.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-AUTOMAKE_FLAGS="$AUTOMAKE_FLAGS -a " #- automatically add missing files
-
-echo "Running aclocal $ACLOCAL_FLAGS"
-aclocal $ACLOCAL_FLAGS || exit 1
-
-echo "Running autoconf $AUTOCONF_FLAGS"
-autoconf $AUTOCONF_FLAGS || exit 1
-
-if grep "A[MC]_CONFIG_HEADER" configure.ac >/dev/null; then
- echo "Running autoheader"
- autoheader || exit 1
-fi
-
-if [ -f Makefile.am ]; then
- echo "Running automake $AUTOMAKE_FLAGS"
- automake $AUTOMAKE_FLAGS || exit 1
-fi
-
-if grep "AM_PROG_LIBTOOL" configure.ac >/dev/null; then
- echo "Running libtoolize"
- libtoolize || exit 1
-fi
-
-./configure "$@" && ( echo ; echo "Now type \`make' to compile." )
-
-