summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 831054a..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-set -e
-
-test -n "$srcdir" || srcdir=`dirname "$0"`
-test -n "$srcdir" || srcdir=.
-
-olddir=`pwd`
-cd "$srcdir"
-
-if automake-1.11 --version > /dev/null 2>&1; then
- automake_suffix='-1.11'
-else
- automake_suffix=''
-fi
-
-mkdir -p m4 build-aux
-gtkdocize --docdir docs --flavour no-tmpl
-aclocal${automake_suffix}
-autoheader
-automake${automake_suffix} --add-missing
-autoconf
-
-CFLAGS=${CFLAGS=-ggdb}
-LDFLAGS=${LDFLAGS=-Wl,-O1}
-export CFLAGS LDFLAGS
-
-cd "$olddir"
-
-if test -z "$NOCONFIGURE"; then
- "$srcdir"/configure "$@"
-fi