# Exit on error:
set -e

wget http://ftpmirror.gnu.org/automake/automake-1.14.tar.xz
tar xf automake-1.14.tar.xz
cd automake-1.14

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
