#! /bin/sh
#
# $Id: bootstrap,v 1.10 2011/07/03 09:12:02 joerg_wunsch Exp $
#
# bootstrap script to build all the *.in files and configure script.
#

export AUTOMAKE AUTOCONF ACLOCAL AUTOHEADER

AUTOMAKE=${AUTOMAKE:-automake}
ACLOCAL=${ACLOCAL:-aclocal}
AUTOCONF=${AUTOCONF:-autoconf}
AUTOHEADER=${AUTOHEADER:-autoheader}

# to see what is executed
set -x

${ACLOCAL}
${AUTOHEADER}
${AUTOCONF}
${AUTOMAKE} --foreign --add-missing --copy
