blob: ce72b357dd10681d630cbb016a257e462ddc005b [file] [log] [blame] [raw]
#!/bin/bash
echo "Running aclocal..."
aclocal || exit 1
echo "Running autoheader..."
autoheader || exit 1
echo "Running autoconf..."
autoconf || exit 1
echo "Running automake..."
automake --add-missing --copy || exit 1
echo "Finished."