`
ihuashao
  • 浏览: 4723142 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

automake autoconfig generate make configure自动生成

阅读更多

自动化生成的例子还可以参照:http://blog.csdn.net/sayigood/archive/2009/12/07/4954772.aspx

转载自:http://blog.chinaunix.net/u3/90876/showart_2072884.html

第一步:
----------
在/root/project/main目录下创建一个文件main.c,其内容如下:
------------------------------------------------
#include <stdio.h>
int main(int argc, char** argv)
{
printf("Hello, Auto Makefile!\n");
return 0;
}
------------------------------------------------

此时状态如下:
[root@localhost main]# pwd
/root/project/main
[root@localhost main]# ls
main.c
[root@localhost main]#

第二步:
----------
运行 autoscan , 自动创建两个文件: autoscan.log configure.scan

此时状态如下:
[root@localhost main]# autoscan
[root@localhost main]# ls
autoscan.log configure.scan main.c
[root@localhost main]#

第三步:
----------
修改configure.scan的文件名为configure.in

查看configure.in 的内容:
------------------------------------------------
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_CONFIG_SRCDIR([main.c])
AC_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.

AC_OUTPUT
------------------------------------------------

解读以上的文件:

------------------------------------------------
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

# AC_PREREQ:
# 确保使用的是足够新的Autoconf版本。如果用于创建configure的Autoconf的版
# 本比version 要早,就在标准错误输出打印一条错误消息并不会创建configure。
AC_PREREQ(2.61)

#
# 初始化,定义软件的基本信息,包括设置包的全称,版本号以及报告BUG时需要用的邮箱地址
#
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)

#
# 用来侦测所指定的源码文件是否存在,来确定源码目录的有效性
#
AC_CONFIG_SRCDIR([main.c])

#
# 用于生成config.h文件,以便autoheader使用
#
AC_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.

#
# 创建输出文件。在`configure.in'的末尾调用本宏一次。
#
AC_OUTPUT
------------------------------------------------

修改动作:
1.修改AC_INIT里面的参数: AC_INIT(main,1.0, pgpxc@163.com)
2.添加宏AM_INIT_AUTOMAKE, 它是automake所必备的宏,也同前面一样,PACKAGE是所要产生软件套件的名称,VERSION是版本编号。
3.在AC_OUTPUT后添加输出文件Makefile


修改后的结果:
------------------------------------------------
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT(main, 1.0, pgpxc@163.com)
AC_CONFIG_SRCDIR([main.c])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE(main,1.0)

# Checks for programs.
AC_PROG_CC

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.

AC_OUTPUT([Makefile])
------------------------------------------------

第四步:
运行 aclocal , 生成一个“aclocal.m4 ”文件和一个缓冲文件夹autom4te.cache ,该文件主要处理本地的宏定义。

此时的状态是:
[root@localhost main]# aclocal
[root@localhost main]# ls
aclocal.m4 autom4te.cache autoscan.log configure.in configure.in~ main.c
[root@localhost main]#


第五步:
运行 autoconf , 目的是生成 configure

此时的状态是:
[root@localhost main]# autoconf
[root@localhost main]# ls
aclocal.m4 autoscan.log configure.in main.c
autom4te.cache configure configure.in~
[root@localhost main]#

第六步:
运行 autoheader ,它负责生成config.h.in文件。该工具通常会从“acconfig.h”文件中复制用户附加的符号定义,因此此处没有附加符号定义,所以不需要创建“acconfig.h”文件。

此时的状态是:
[root@localhost main]# autoheader
[root@localhost main]# ls
aclocal.m4 autoscan.log configure configure.in~
autom4te.cache config.h.in configure.in main.c
[root@localhost main]#

第七步:
下面即将运行 automake , 但在此之前应该做一下准备工作!

首先
创建一个 Makefile.am .这一步是创建Makefile很重要的一步,automake要用的脚本配置文件是Makefile.am,用户需要自己创建相应的文件。之后,automake工具转换成Makefile.in。

这个Makefile.am的内容如下:
------------------------------------------------
AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=main
main_SOURCES=main.c
------------------------------------------------

下面对该脚本文件的对应项进行解释。
其中的AUTOMAKE_OPTIONS为设置automake的选项。由于GNU(在第1章中已经有所介绍)对自己发布的软件有严格的规范,比如必须附 带许可证声明文件COPYING等,否则automake执行时会报错。automake提供了三种软件等级:foreign、gnu和gnits,让用 户选择采用,默认等级为gnu。在本例使用foreign等级,它只检测必须的文件。
bin_PROGRAMS定义要产生的执行文件名。如果要产生多个执行文件,每个文件名用空格隔开。
main_SOURCES定义“main”这个执行程序所需要的原始文件。如果”main”这个程序是由多个原始文件所产生的,则必须把它所用到的所有原 始文件都列出来,并用空格隔开。例如:若目标体“main”需要“main.c”、“sunq.c”、“main.h”三个依赖文件,则定义 main_SOURCES=main.c sunq.c main.h。要注意的是,如果要定义多个执行文件,则对每个执行程序都要定义相应的file_SOURCES。

其次
使用automake对其生成“configure.in”文件,在这里使用选项“—adding-missing”可以让automake自动添加有一些必需的脚本文件。
运行后的状态是:
------------------------------------------------
[root@localhost main]# automake --add-missing
configure.in:8: installing `./missing'
configure.in:8: installing `./install-sh'
Makefile.am: installing `./depcomp'
[root@localhost main]# ls
aclocal.m4 config.h.in configure.in~ main.c Makefile.in
autom4te.cache configure depcomp Makefile.am missing
autoscan.log configure.in install-sh Makefile.am~
[root@localhost main]#
------------------------------------------------

第八步
运行configure ,在这一步中,通过运行自动配置设置文件configure,把Makefile.in变成了最终的Makefile。
运行的结果如下:
------------------------------------------------
[root@localhost main]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
[root@localhost main]# ls
aclocal.m4 config.h.in configure.in main.c Makefile.in
autom4te.cache config.log configure.in~ Makefile missing
autoscan.log config.status depcomp Makefile.am stamp-h1
config.h configure install-sh Makefile.am~
[root@localhost main]#
------------------------------------------------

第九步
运行 make ,对配置文件Makefile进行测试一下

此时的状态如下:
------------------------------------------------
[root@localhost main]# make
cd . && /bin/sh /root/project/main/missing --run aclocal-1.10
cd . && /bin/sh /root/project/main/missing --run automake-1.10 --foreign
cd . && /bin/sh /root/project/main/missing --run autoconf
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh ./configure --no-create --no-recursion
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
configure: creating ./config.status
/bin/sh ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
cd . && /bin/sh /root/project/main/missing --run autoheader
rm -f stamp-h1
touch config.h.in
make all-am
make[1]: Entering directory `/root/project/main'
gcc -DHAVE_CONFIG_H -I. -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
mv -f .deps/main.Tpo .deps/main.Po
gcc -g -O2 -o main main.o
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
config.status: config.h is unchanged
make[1]: Leaving directory `/root/project/main'
[root@localhost main]# ls
aclocal.m4 autoscan.log config.h.in config.status configure.in depcomp main main.o Makefile.am Makefile.in stamp-h1
autom4te.cache config.h config.log configure configure.in~ install-sh main.c Makefile Makefile.am~ missing
[root@localhost main]#
------------------------------------------------

第十步
运行生成的文件 main:
------------------------------------------------
[root@localhost main]# ./main
Hello, Auto Makefile!
[root@localhost main]#
分享到:
评论

相关推荐

    Linux-Make文件的自动生成.pdf

    Autoconf 工具可以自动生成 configure 文件,而 Automake 工具可以自动生成 Make 文件。使用 Autoconf 和 Automake 工具可以大大简化 Make 文件的生成过程。 在 Linux 系统开发中,Make 文件是必不可少的工具之一。...

    automake autotools autoconf

    `autotools`可以理解为一个流程,包括编写`configure.ac`(`autoconf`的输入)、运行`autoconf`生成`configure`脚本,然后编写`Makefile.am`(`automake`的输入),运行`automake`和`autoheader`生成`Makefile.in`和...

    利用autoconf,automake生成makefile全攻略

    `autoconf` 和 `automake` 是两个常用的开源工具,它们可以帮助开发者自动生成跨平台的 `makefile`,从而简化构建过程。本文将详细介绍如何利用这两个工具为包含多个源文件的项目生成 `makefile`。 首先,我们来看...

    automake 自动生成makefile

    automake 是linux下的自动生成makefile的工具。需要配合auroconf使用 版本:automake-1.9.6.tar.tar

    gnu make automake autoconf

    例如,开发者首先使用Autoconf生成configure脚本,然后运行configure以检测系统环境并生成Makefile.in,接着Automake处理库的构建细节,最后通过GNU Make执行编译和链接。Libtool则负责处理库的编译和版本控制,确保...

    win平台automake自动生成Makefile工具(附源代码)

    自己写的简易的windows平台的自动生成Makefile工具,不...使用方法:在你的工程目录下运行automake,自动生成Makefile文件,可以使用automake -t查看打印自动生成的Makefile(不会写入文件)。第一次上传文件,求人品。

    自动生成 Makefile

    Autoconf 会根据 configure.in 文件生成 configure 脚本,而 Automake 会根据 configure 脚本生成 Makefile。 使用./configure, make, make install 安装程序 最后,我们可以使用./configure, make, make install ...

    使用AutoMake轻松生成Makefile

    AutoMake通过一系列预定义的宏和模板自动生成符合GNU Makefile规范的文件,从而使项目能够在不同的平台上顺利编译。 ### 系统环境准备 在开始使用AutoMake之前,确保系统已安装以下软件: - **automake** - **...

    MinGW中的autoconf和automake

    然后,运行`autoreconf`命令,这会自动调用autoconf和automake,生成`configure`和`Makefile.in`文件。接下来,用户在目标系统上运行`./configure`,该脚本将根据系统特性生成Makefile。最后,执行`make`和`make ...

    auroconf 自动生成config文件

    linux下,自动生成config文件,配合automake生成makefile文件 版本:autoconf-2.63.tar.tar

    automake-1.15.1.tar.gz

    automake的主要任务是处理源代码目录结构,生成Makefile.in,这些文件随后会被configure脚本转化为Makefile,使得编译过程可以按照预定的规则自动进行。 在hi3861开发环境中,automake-1.15.1的应用尤为重要。hi...

    autoconfig

    Linux下的`autoconfig`是基于`autoconf`和`automake`等工具的一套流程,用于自动检测系统特性并生成相应的配置脚本,帮助开发者构建跨平台的软件。 【autoconf】: `autoconf`是一个自动化配置脚本生成工具,它是...

    轻松学automake.pdf

    - 在构建过程中,首先要创建一个项目目录结构,然后编写Makefile.am文件,使用Autoconf和Automake生成Makefile.in,最后执行configure脚本和make命令来编译程序。 7. 构建系统的常用命令: - make:执行Makefile...

    运用Autoconf和Automake生成Makefile的学习之路

    Autoconf 是一个生成配置脚本的工具,而 Automake 则是一个从文件 `Makefile.am` 自动生成 `Makefile.in` 的工具。它们可以共同生成 Makefile,提高软件开发的效率。 Makefile 的概念 Makefile 是一个文本文件,它...

    linux c自动生成Makefile

    本文将详细介绍如何利用Automake和Autoconf自动生成Makefile的详细过程。 **Automake** Automake是一个辅助工具,它根据项目源代码结构生成符合GNU标准的Makefile.in文件。这个Makefile.in文件随后会被configure...

    GNU AutoMake

    - **autoheader**:从 `configure.ac` 文件生成 `config.h.in` 文件。 - **autoconf**:从 `configure.ac` 和其他脚本生成 `configure` 脚本。 这些命令协同工作,形成了构建过程的基础。 ##### 3.2 严格性 ...

    例解 autoconf 和 automake 生成 Makefile 文件

    `autoconf` 和 `automake` 是两个经典的开源工具,它们主要用于Unix/Linux环境下的自动配置和构建过程,帮助开发者生成适应不同平台的`Makefile`。这两个工具的结合使用可以简化项目构建,确保源代码在多种环境下都...

    自动生成 Makefile 的全过程详解

    3. **生成 configure.in 文件**:使用 `autoscan` 命令自动生成 `configure.in` 文件的模板。 ```sh autoscan ``` 之后,将生成的 `configure.scan` 文件重命名为 `configure.in`,并进行必要的编辑,使其内容...

    automake-1.16.tar.gz

    `automake-1.16.tar.gz` 是一个包含了 `automake` 工具的源代码包,主要用于自动化构建过程中的Makefile生成。在Linux和类Unix系统中,`automake` 是一个不可或缺的工具,它与`autoconf`、`libtool`等一起工作,帮助...

Global site tag (gtag.js) - Google Analytics