#! /bin/sh

sh() {
  /bin/sh -c "set -x; $*"
}

export WANT_AUTOMAKE=1.9

sh libtoolize --copy --force --automake
sh aclocal
sh autoconf
sh autoheader
sh automake --include-deps --add-missing --copy

echo
echo You are now ready to run ./configure
echo enjoy!
