在Linux系统下开发一个较大的项目,完全手动建立Makefile是一件费力而又容易出错的工作。autotools系列工具只需用户输入简单的目标文件、依赖文件、文件目录等就可以比较轻松地生成Makefile了。这极大地简化了Makefile的编写和维护,作者也是刚体验到其威力,所以将其过程记录下来。...
分类:
其他好文 时间:
2014-08-22 19:40:49
阅读次数:
312
autotools是一个自动化的编译工具。本文是对autotools工具用法的一个总结。
分类:
其他好文 时间:
2014-07-11 10:28:13
阅读次数:
162
我们通常用诸如 "./configure", "make","make install"
等命令就可以把源码包安装到系统中,但是背后的原理是什么呢?当我们需要修改源码,加入自己的代码后如何修改呢?所以需要学习如何利用 GNU Autoconf 及 Automake 这两套工具来自动产生 Makefile文件。下面的内容综合了一些网上找到的资源。
先来一个例子
1.系统中...
分类:
其他好文 时间:
2014-07-03 18:23:52
阅读次数:
278
GNU Autotools can not only handle making (compiling and linking), distributing, transplanting source code for different platforms, but can also track ...
分类:
其他好文 时间:
2014-06-30 12:33:53
阅读次数:
400
GNU Autotools will be considered as the ideal tool to manage Fortran project after creating a basic program structure by using Eclipse IDE. Eclipse ID...
分类:
其他好文 时间:
2014-06-29 19:40:49
阅读次数:
378
相信每个学习Linux的人都知道Makefile,这是一个很有用的东西,但是编写它是比较复杂,今天介绍一个它的自动生成工具,autotools的使用。很多GNULinux的的软件都是用它生成Makefile的,包括我们非常熟悉的Linux内核源代码。1、准备: 需要工具 autoscan acloc...
分类:
其他好文 时间:
2014-06-25 19:08:46
阅读次数:
231