1)、进入源码目录,执行aclocal生成aclocal.m4文件
2)、执行autoconf生成configure文件
3)、执行autoheader
4)、执行automake --add-missing,不用理会输出的warning
5)、分别执行: touch NEWS;touch README;touch AUTHORS;touch ChangeLog; 生成几个文件。
6)、再执行一次automake --add-missing,照样不用理会输出的warning
7)、现在,可以执行./configure了,生成Makefile文件
8)、执行make
9)、执行sudo make install
make distclean 删除之前的编译文件
./configure --prefix=/home/lening --host=x86_64-linux-gnu 配置编译环境为x86
../configure --prefix=/home/InstallDir --host=arm-linux-gnueabihf 配置编译环境为交叉编译



