From a127d39b6540353734d8557ca39f401a2683aca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 17 Aug 2010 14:17:42 +0000 Subject: use autoconf svn path=/trunk/externals/hardware/wiimote/; revision=13823 --- autogen.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..27b75c6 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +PATH=/sw/bin:$PATH + +PWD=${0%/*} + + +## git cannot really handle empty directories +## so let's create the missing ones +mkdir -p ${PWD}/m4/generated + +case `uname -s` in + MINGW*) +# autoreconf doesn't always work on MinGW + libtoolize --install --force \ + && aclocal \ + && automake --add-missing --force-missing \ + && autoconf + ;; + *) + autoreconf --install --force --verbose + ;; +esac -- cgit v1.2.1