autotools的简单用法

通过搜索资料和自身体会总结autotools的一个简单使用方法。


大致包括如下命令:

autoscan

aclocal

autoconf

autoheader

automake


首先创建hello.c文件并编辑

  1. #include <stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     printf(”hello\n”);  
  6.     return 0;  
  7. }  
#include <stdio.h>

int main()
{
    printf("hello\n");
    return 0;
}

(1)autoscan

在源代码目录中执行 autoscan

生成configure.scan文件。

编辑configure.scan文件,通常添加如下两行

  1. AM_INIT_AUTOMAKE(hello, 1.0)  
  2. AC_CONFIG_FILES([Makefile])  
AM_INIT_AUTOMAKE(hello, 1.0)
AC_CONFIG_FILES([Makefile])

并另存为configure.ac(或configure.in),和autoscan.log。

(2)aclocal

执行aclocal,工具根据configure.ac(或configure.in)生成aclocal.m4文件和autom4te.cache文件夹。

(3)autoconf

执行autoconf,生成configure文件。

(4)autoheader

执行autoheader,生成config.h.in文件。

(5)automake

新建文件Makefile.am并编辑

  1. AUTOMAKE_OPTIONS=foreign  
  2. bin_PROGRAMS=hello  
  3. hello_SOURCES=hello.c  
AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=hello
hello_SOURCES=hello.c

执行automake,提示:
  1. configure.ac:8: error: required file ’./install-sh’ not found  
  2. configure.ac:8:   ‘automake –add-missing’ can install ‘install-sh’  
  3. configure.ac:8: error: required file ’./missing’ not found  
  4. configure.ac:8:   ‘automake –add-missing’ can install ‘missing’  
  5. Makefile.am: error: required file ’./depcomp’ not found  
  6. Makefile.am:   ‘automake –add-missing’ can install ‘depcomp’  
  7.    
configure.ac:8: error: required file './install-sh' not found
configure.ac:8:   'automake --add-missing' can install 'install-sh'
configure.ac:8: error: required file './missing' not found
configure.ac:8:   'automake --add-missing' can install 'missing'
Makefile.am: error: required file './depcomp' not found
Makefile.am:   'automake --add-missing' can install 'depcomp'
 

执行automake –add-missing

再执行automake

后面的过程即为熟知的

./configure

make

make install


补充:

autotools工具还提供 make dist 打包功能

执行 make dist

根据configure.ac中

AC_INIT( [ hello ], [ 1.0 ] )

生成hello-1.0.tar.gz的源码包文件。


总结:

在autotools的使用过程中,除了源代码以外,必须的文件只有两个 configure.ac 和 Makefile.am


猜你喜欢

转载自blog.csdn.net/liangjisheng/article/details/79687627