1#!/bin/sh -e
2
3rm -rf config.cache build
4mkdir build
5
6aclocal -I m4 $ACLOCAL_FLAGS
7autoconf
8autoheader
9automake --add-missing $AUTOMAKE_FLAGS
10
11if test x$NOCONFIGURE = x; then
12	echo "./configure $*"
13	./configure "$@"
14fi
15