Makefile 294 missing separator Stop

# make
make  all-recursive
make[1]: Entering directory `/usr/local/src/faac'
Making all in include
make[2]: Entering directory `/usr/local/src/faac/include'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/usr/local/src/faac/include'
Making all in libfaac
make[2]: Entering directory `/usr/local/src/faac/libfaac'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/usr/local/src/faac/libfaac'
Making all in common
make[2]: Entering directory `/usr/local/src/faac/common'
Makefile:294: *** missing separator.  Stop.
make[2]: Leaving directory `/usr/local/src/faac/common'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/faac'
make: *** [all-recursive-am] Error 2
#

'''Solution'''

This error is due to old version of "automake" installed on the server.

Upgrade automake to latest version.

'''Before Install'''

# aclocal --version
aclocal (GNU automake) 1.4-p6
cd /usr/local/src
wget http://ftp.gnu.org/gnu/automake/automake-1.10.tar.gz
tar -zxvf automake-1.10.tar.gz
cd automake-1.10
./configure --prefix=/usr/
make
make install

'''After Install'''

# aclocal --version
aclocal (GNU automake) 1.10

Server Setup
ERRORS
HOWTO