#!/bin/sh

# Make sure that we are in the right directory.
if test ! -f configure.ac; then
    cat >&2 <<__EOF__
You must run bootstrap from the root of the distribution.
__EOF__
    exit 1
fi

autoreconf --install -Wall --verbose "${@}"