下载 CUnit-2.1-3.tar.bz2:
http://sourceforge.net/projects/cunit/
解压:
tar jxvf CUnit-2.1-3.tar.bz2
cd CUnit-2.1-3
因为是使用GNU automake的
aclocal
autoheader
autoconf
automake
automake --add...
分类:
编程语言 时间:
2015-06-04 11:51:10
阅读次数:
136
linux应用开发-Autotools
一 工具的使用
以一个案例为主,即打包一个hello的程序
1 编写hello.c
2 autoscan
3 改configure.scan后缀名为.ac
4 vi configure.ac 加上发行的信息和AM_INIT_AUTOMAKE(发行信息)和输出文件名(Makefile)
5 aclocal生成a...
分类:
系统相关 时间:
2015-05-09 10:21:39
阅读次数:
124
autotools是个系列工具,首先确认你的Ubuntu系统是否安装了以下工具(可以通过which命令查看):
aclocal
autoscan
autoconf
autoheader
automake
---------------------------------------------------------------------------------
安装方...
分类:
其他好文 时间:
2015-04-25 01:42:13
阅读次数:
216
1.第一级目录介绍|_postgres |_aclocal.m4------------config用的文件的一部分 |_config----------------config文件目录 |_configure-------------configure文件 |_contrib------...
分类:
其他好文 时间:
2014-12-28 21:59:43
阅读次数:
239
.├── aclocal.m4├── autoscan.log├── config.log├── config.status├── configure├── configure.in├── Makefile├── Makefile.am├── Makefile.in└── src ├── f...
分类:
系统相关 时间:
2014-11-18 13:27:15
阅读次数:
226
开源软件自动化工具链简单应用(autoscan,aclocal,autoheader,automake,autoconf,make)...
分类:
其他好文 时间:
2014-10-24 14:47:41
阅读次数:
202
一、工具的使用1、学会使用vim/emacs,vim/emacs是linux下最常用的源码编辑具,不光要学会用它们编辑源码,还要学会用它们进行查找、定位、替换等。新手的话推荐使用vim,这也是我目前使用的文本编辑器。2、学会makefile文件的编写规则,并结合使用工具aclocal、autocon...
分类:
编程语言 时间:
2014-09-17 20:07:42
阅读次数:
228
autotools是系列工具, 它主要由autoconf、automake、perl语言环境和m4等组成;所包含的命令有五个:
(1)aclocal
(2)autoscan
(3)autoconf
(4)autoheader
(5)automake
一、准备源代码
本项目有三个源文件,分别为score.cpp, sum....
分类:
其他好文 时间:
2014-09-09 18:24:19
阅读次数:
267
Autotools工具的构成1、autoscanautoscan是用来扫描源代码目录生成configure.san文件的,configure.san包含了系统配置的基本选项,里面都是一些宏定义,我们需要将它的名字改为configure.in2、aclocalaclocal是一个perl脚本程序。aclocal根据configure.in文件内容自动生成aclocal.m4文件,生成的aclocal...
分类:
移动开发 时间:
2014-08-24 14:14:40
阅读次数:
435
主要步骤:
1.开发者要书写的文件主要是configure.in和Makefile.am
2.运行autoscan检测源文件生成configure.scan并修改成configure.in
3.编辑configure.in
4.由aclocal命令生成aclocal.m4
5.运行autoconf生成configure脚本
6.运行autoheader生成config.h.in文件...
分类:
系统相关 时间:
2014-06-05 07:51:31
阅读次数:
439