PREFIX=$HOME/local mkdir tmp cd tmp wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz tar xvzf autoconf-2.59.tar.gz cd autoconf-2.59 ./configure --prefix=$PREFIX make install cd .. wget http://ftp.gnu.org/gnu/automake/automake-1.9.6.tar.gz tar xvzf automake-1.9.6.tar.gz cd automake-1.9.6 ./configure --prefix=$PREFIX make install cd .. wget http://ftp.gnu.org/gnu/libtool/libtool-1.5.22.tar.gz tar xvzf libtool-1.5.22.tar.gz cd libtool-1.5.22 ./configure --prefix=$PREFIX make install cd ../.. rm -fr tmp