Linux Autotools

/**********************************************************************
 *                          Linux Autotools
 * 说明:
 *     我们经常会需要下载那些开源软件,当然有时候我们自己也会写一下软件
 * 作为开源软件,但是每次看到开源软件里面一堆的文件都不知道是怎么回事,
 * 其中很多东西都是很标准的,但不知道是怎么生成的,原来是使用Autotools
 * 来生成的。
 *
 *                                  2016-5-14 深圳 南山平山村 曾剑锋
 *********************************************************************/

参考文档:
    1. GNU Autotools的使用方法
        http://blog.csdn.net/scucj/article/details/6079052
    2. 2 An Introduction to the Autotools
        http://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html
    3. Autotools Tutorial for Beginners
        http://markuskimius.wikidot.com/programming:tut:autotools/
    4. Building a GNU Autotools Project
        http://inti.sourceforge.net/tutorial/libinti/autotoolsproject.html
原文地址:https://www.cnblogs.com/zengjfgit/p/5492456.html