aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index e76f3bd9..00000000
--- a/autogen.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-#
-# Autotools boostrapping script
-#
-giveup()
-{
- echo
- echo " Something went wrong, giving up!"
- echo
- exit 1
-}
-
-OSTYPE=`uname -s`
-
-for libtoolize in glibtoolize libtoolize; do
- LIBTOOLIZE=`which $libtoolize 2>/dev/null`
- if test "$LIBTOOLIZE"; then
- break;
- fi
-done
-
-#AMFLAGS="--add-missing --copy --force-missing"
-AMFLAGS="--add-missing --copy"
-if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
- AMFLAGS=$AMFLAGS" --include-deps";
-fi
-
-echo "Running aclocal"
-aclocal -I ./m4 || giveup
-echo "Running autoheader"
-autoheader || giveup
-echo "Running libtoolize"
-$LIBTOOLIZE --force --copy || giveup
-echo "Running automake"
-automake $AMFLAGS # || giveup
-echo "Running autoconf"
-autoconf || giveup
-
-echo "======================================"
-echo "Now you are ready to run './configure'"
-echo "======================================"