autotools生成Makefile

来源:互联网 发布:mac finder要密码 编辑:程序博客网 时间:2024/06/05 16:50

自己需编写,Makefile.am



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


大致包括如下命令:

autoscan

aclocal

autoconf

autoheader

automake


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

[cpp] view plaincopyprint?
  1. #include <stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     printf("hello\n");  
  6.     return 0;  
  7. }  

(1)autoscan

在源代码目录中执行 autoscan

生成configure.scan文件。

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

[plain] view plaincopyprint?
  1. AM_INIT_AUTOMAKE(hello, 1.0)  
  2. 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并编辑

[plain] view plaincopyprint?
  1. AUTOMAKE_OPTIONS=foreign  
  2. bin_PROGRAMS=hello  
  3. hello_SOURCES=hello.c  

执行automake,提示:
[plain] view plaincopyprint?
  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.    

执行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的源码包文件。

0 0