aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 4b4074f..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env bash
-
-# autogen.sh
-#
-# Andreas Buesching <crunchy@tzi.de>
-# $id$
-
-# minimum needed software versions:
-#
-# * libtoolize (GNU libtool) 1.4.3
-# * aclocal (GNU automake) 1.6.3
-# * autoconf (GNU Autoconf) 2.57
-# * automake (GNU automake) 1.6.3
-
-export WANT_AUTOMAKE="1.7"
-
-libtoolize -c -f && aclocal && autoconf && automake -a -c -f && ./configure $@
-
-# end of autogen.sh