autotools的简单用法

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


大致包括如下命令:

autoscan

aclocal

autoconf

autoheader

automake


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

#include <stdio.h>

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

(1)autoscan

在源代码目录中执行 autoscan

生成configure.scan文件。

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

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并编辑

AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=hello
hello_SOURCES=hello.c

执行automake,提示:
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


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值