#!/bin/sh

set -x

if [ -d m4 ] ; then
ACLOCAL_OPTS="-I m4"
else
ACLOCAL_OPTS=""
fi

aclocal $ACLOCAL_OPTS && \
autoheader && \
libtoolize --force && \
automake --add-missing --copy --include-deps --force --foreign && \
autoconf
