# Depends on autoconf

# Exit on error:
set -e

wget http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz
tar xf automake-1.14.tar.gz
cd automake-1.14
./configure --prefix=
make install
cd ..
rm -rf automake-1.14
rm automake-1.14.tar.gz

exit 0
