From 05f71533d872a0dfd055ef36125e1492ef438468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 5 Mar 2015 15:03:22 +0000 Subject: proper autotools build-system there are few systems worse than autotools. one of them is a build-system that is only halfway using autotools. so let's completely go into autoworld svn path=/trunk/externals/iem/iemmatrix/; revision=17432 --- autogen.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..e4d4cc8 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +AUTORECONF=$(which autoreconf) + +if [ -x "${AUTORECONF}" ]; then + ${AUTORECONF} -fiv || exit 1 +else + aclocal && autoconf || exit 1 +fi +echo "now run './configure'" 1>&2 +echo "for help on args run './configure --help'" 1>&2 -- cgit v1.2.1