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

Configure,Makefile.am, Makefile.in, Makefile文件之间关系

阅读更多



 

1.autoscan (autoconf): 扫描源代码以搜寻普通的可移植性问题,比如检查编译器,库,头文件等,生成文件configure.scan,它是configure.ac的一个雏形。

    your source files --> [autoscan*] --> [configure.scan] --> configure.ac

2.aclocal (automake):根据已经安装的宏,用户定义宏和acinclude.m4文件中的宏将configure.ac文件所需要的宏集中定义到文件 aclocal.m4中。aclocal是一个perl 脚本程序,它的定义是:“aclocal - create aclocal.m4 by scanning configure.ac”
user input files   optional input     process          output files
================ ============== ======= ============

acinclude.m4 - - - - -.
V
.-------,
configure.ac ------------------------>|aclocal|
{user macro files} ->| |------> aclocal.m4
`-------'
3.autoheader(autoconf): 根据configure.ac中的某些宏,比如cpp宏定义,运行m4,声称config.h.in

user input files optional input process output files
================ ============== ======= ============

aclocal.m4 - - - - - - - .
|
V
.----------,
configure.ac ----------------------->|autoheader|----> autoconfig.h.in
`----------'

4.automake: automake将Makefile.am中定义的结构建立Makefile.in,然后configure脚本将生成的Makefile.in文件转换 为Makefile。如果在configure.ac中定义了一些特殊的宏,比如AC_PROG_LIBTOOL,它会调用libtoolize,否则它 会自己产生config.guess和config.sub

user input files   optional input   processes          output files
================ ============== ========= ============

.--------,
| | - - -> COPYING
| | - - -> INSTALL
| |------> install-sh
| |------> missing
|automake|------> mkinstalldirs
configure.ac ----------------------->| |
Makefile.am ----------------------->| |------> Makefile.in
| |------> stamp-h.in
.---+ | - - -> config.guess
| | | - - -> config.sub
| `------+-'
| | - - - -> config.guess
|libtoolize| - - - -> config.sub
| |--------> ltmain.sh
| |--------> ltconfig
`----------'

5.autoconf:将configure.ac中的宏展开,生成configure脚本。这个过程可能要用到aclocal.m4中定义的宏。

user input files   optional input   processes          output files
================ ============== ========= ============

aclocal.m4 ,autoconfig.h.in - - - - - - -.
V
.--------,
configure.ac ----------------------->|autoconf|------> configure
 
6. ./configure的过程

.-------------> [config.cache]
configure* --------------------------+-------------> config.log
|
[config.h.in] -. v .--> [autoconfig.h]
+-------> config.status* -+
Makefile.in ---' `--> Makefile
 
7. make过程
 
[autoconfig.h] -.
+--> make* ---> 程序
Makefile ---'
 
.---------,
config.site - - ->| |
config.cache - - ->|configure| - - -> config.cache
| +-,
`-+-------' |
| |----> config.status
config.h.in ------->|config- |----> config.h
Makefile.in ------->| .status|----> Makefile
| |----> stamp-h
| +--,
.-+ | |
| `------+--' |
ltmain.sh ------->|ltconfig|-------> libtool
| | |
`-+------' |
|config.guess|
| config.sub |
`------------'

 

.--------,
Makefile ------>| |
config.h ------>| make |
{project sources} ---------------->| |--------> {project targets}
.-+ +--,
| `--------' |
| libtool |
| missing |
| install-sh |
|mkinstalldirs|
`-------------'
实例
在/hello/目录下创建一个hello.c文件,并编译运行它:

#cd /hello/

(1) 编写源文件hello.c:

#include<stdio.h> 
int main(int argc, char** argv)
{
printf("Hello, GNU!n");
return 0;
}

[litao@vm0000131 hello]$ ll
total 4
-rw-rw-r-- 1 litao litao 68 Aug 12 12:02 hello.c

一、autoscan

[litao@vm0000131 hello]$ autoscan
autom4te: configure.ac: no such file or directory
autoscan: /usr/bin/autom4te failed with exit status: 1
[litao@vm0000131 hello]$ ll
total 8
-rw-rw-r-- 1 litao litao   0 Aug 12 12:03 autoscan.log
-rw-rw-r-- 1 litao litao 457 Aug 12 12:03 configure.scan
-rw-rw-r-- 1 litao litao  68 Aug 12 12:02 hello.c

已经生成了configure.scan,autoscan.log文件

将configure.scan 修改为 configure.in,最后修改的内容如下:

[litao@vm0000131 hello]$ mv configure.scan configure.in    
[litao@vm0000131 hello]$ vim configure.in 

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

AC_PREREQ(2.59)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_CONFIG_SRCDIR([hello.c])
#AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE(hello, 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)

二、acloacl

[litao@vm0000131 hello]$ aclocal 

生成 aclocal.m4 和 autom4te.cache (生成aclocal.m4的过程中涉及到configure.in)

[litao@vm0000131 hello]$ ll
total 44
-rw-rw-r-- 1 litao litao 31120 Aug 12 12:08 aclocal.m4
drwxr-xr-x 2 litao litao  4096 Aug 12 12:08 autom4te.cache
-rw-rw-r-- 1 litao litao     0 Aug 12 12:03 autoscan.log
-rw-rw-r-- 1 litao litao   496 Aug 12 12:08 configure.in
-rw-rw-r-- 1 litao litao    68 Aug 12 12:02 hello.c

三、antoconf

[litao@vm0000131 hello]$ autoconf
生成 configure (根据 configure.in, 和 aclocal.m4)

[litao@vm0000131 hello]$ ll
total 168
-rw-rw-r-- 1 litao litao  31120 Aug 12 12:08 aclocal.m4
drwxr-xr-x 2 litao litao   4096 Aug 12 12:11 autom4te.cache
-rw-rw-r-- 1 litao litao      0 Aug 12 12:03 autoscan.log
-rwxrwxr-x 1 litao litao 122297 Aug 12 12:11 configure
-rw-rw-r-- 1 litao litao    496 Aug 12 12:08 configure.in
-rw-rw-r-- 1 litao litao     68 Aug 12 12:02 hello.c

四、编写Makefile.am:

AUTOMAKE_OPTIONS= foreign
bin_PROGRAMS= hello
hello_SOURCES= hello.c

五、automake

生成 Makefile.in, depcomp, install-sh, 和 missing (根据 Makefile.am, 和 aclocal.m4)

[litao@vm0000131 hello]$ automake
configure.in: required file `./install-sh' not found
configure.in: required file `./missing' not found
Makefile.am: required file `./depcomp' not found
[litao@vm0000131 hello]$ automake --add-missing
configure.in: installing `./install-sh'
configure.in: installing `./missing'
Makefile.am: installing `./depcomp'
[litao@vm0000131 hello]$ ll
total 192
-rw-rw-r-- 1 litao litao  31120 Aug 12 12:08 aclocal.m4
drwxr-xr-x 2 litao litao   4096 Aug 12 12:14 autom4te.cache
-rw-rw-r-- 1 litao litao      0 Aug 12 12:03 autoscan.log
-rwxrwxr-x 1 litao litao 122297 Aug 12 12:11 configure
-rw-rw-r-- 1 litao litao    496 Aug 12 12:08 configure.in
lrwxrwxrwx 1 litao litao     31 Aug 12 12:16 depcomp -> /usr/share/automake-1.9/depcomp
-rw-rw-r-- 1 litao litao     68 Aug 12 12:02 hello.c
lrwxrwxrwx 1 litao litao     34 Aug 12 12:16 install-sh -> /usr/share/automake-1.9/install-sh
-rw-rw-r-- 1 litao litao     69 Aug 12 12:15 Makefile.am
-rw-rw-r-- 1 litao litao  16561 Aug 12 12:16 Makefile.in
lrwxrwxrwx 1 litao litao     31 Aug 12 12:16 missing -> /usr/share/automake-1.9/missing

六、configure
生成 Makefile, config.log, 和 config.status


  • 大小: 7.8 KB
分享到:
评论

相关推荐

    configure.和Makefile.之间的关系

    - **`automake`**: 从 `Makefile.am` 文件中提取结构并生成 `Makefile.in`。 - 如果存在特定宏,则调用 `libtoolize` 来生成额外的配置文件;否则,自动生成 `config.guess` 和 `config.sub`。 - **`autoconf`**:...

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

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

    automake.pdf

    GNU Automake的主要作用是简化Makefile的编写工作,开发者只需要编写一些模板文件(通常是configure.ac或者Makefile.am),然后通过Automake工具处理这些模板文件,自动生成Makefile.in文件。之后,当运行configure...

    mooon编译系统介绍(可复用Makefile)

    在使用mooon编译系统时,用户首先需要准备几个关键文件,包括configure.ac.in、Make.rule.in以及主目录和子目录下的Makefile.am文件。这些文件通过bootstrap.sh脚本处理后,会生成相应的Makefile.am文件,此时用户不...

    makefile制作.pdf

    3. **创建`Makefile.am`文件**:在项目根目录及子目录下创建`Makefile.am`文件,这些文件定义了编译规则、目标和依赖关系。 4. **创建必要的项目文件**:如`NEWS`、`README`、`ChangeLog`和`AUTHORS`,这些都是开源...

    makefile制作.docx

    `Makefile.am`文件定义了构建规则,比如源文件和目标文件之间的映射,以及安装路径等信息。此外,还需在项目目录下添加`NEWS`、`README`、`ChangeLog`和`AUTHORS`等文档文件,以提供项目信息。 接下来,将`/usr/...

    例解 autoconf 和 automake 生成 Makefile 文件

    - **规则生成**:`automake`读取`Makefile.am`文件并生成`Makefile.in`,`configure`脚本会进一步处理这个文件。 - **库支持**:`automake`支持静态库和动态库的创建,包括libtool的支持,方便跨平台的库管理。 ...

    使用AutoMake轻松生成Makefile.doc

    接着,创建 "Makefile.am" 文件,这是 AutoMake 的主要输入文件,定义了源文件、目标文件和编译规则。对于简单的 "hello" 示例,"Makefile.am" 可以如下所示: ```makefile bin_PROGRAMS = hello hello_SOURCES = ...

    使用autotools制作makefile

    8. **处理makefile.am生成makefile.in**:运行automake命令来处理makefile.am文件,并生成makefile.in文件。在这个过程中,可以通过设置AUTOMAKE_OPTIONS来指定软件等级(foreign、gnu或gnits)。 9. **生成最终的...

    利用autoconf,automake生成makefile全攻略

    4. **创建 `Makefile.am`**:为每个源代码文件所在的目录创建一个 `Makefile.am` 文件,用于描述构建规则。在项目根目录下创建如下内容的 `Makefile.am`: ```makefile bin_PROGRAMS = MyFirst_EXE MyFirst_EXE_...

    automake制作makefile

    运行 `automake` 命令根据 `Makefile.am` 文件生成 `Makefile.in`。这个文件包含了具体的构建规则和依赖关系。 7. **./configure 命令** 最后,执行 `./configure` 命令根据 `Makefile.in` 生成最终的 `Makefile...

    lidmodbus3.14(解决configure.js错误)

    比如,`configure.ac`和`Makefile.am`是Autotools项目中的核心文件,它们定义了编译和安装的规则。新版本可能对这些文件进行了调整,以适应新的功能需求或改善构建流程。`AUTHORS`文件列出了所有贡献者,向他们表示...

    Glade工程生成makefile文件

    `automake -a`命令根据`Makefile.am`文件生成最终的`Makefile`文件。这里的`-a`选项表示自动创建缺少的Makefile.am文件。 10. **运行configure脚本** 运行`./configure`脚本来准备编译环境。这个脚本会根据系统...

    automake制作Makefile的模板

    - Makefile.am 文件是关键,它定义了源文件、目标文件、编译选项和依赖关系。根据你的项目需求,修改这些变量以匹配你的源代码文件和目标。 - 将项目源代码文件添加到相应的位置,并更新 Makefile.am 中的源文件...

    automake生成makefile的工具

    1. **创建Makefile.am**:在源代码目录下创建Makefile.am文件,定义源文件、目标、依赖关系等。 2. **运行automake**:执行`automake --add-missing`命令,这将生成Makefile.in,并检查Makefile.am的语法和内容是否...

    多文件多目录例解autoconf和automake生成Makefile文件

    - **Automake**:用于从`Makefile.am`文件自动生成`Makefile.in`的工具。 - **M4**:文本宏处理器,被`Autoconf`用来生成脚本。 - **Perl**:用于解析`Makefile.am`文件,生成`Makefile.in`。 - **Libtool**:可选...

    automake-1.13.4.tar.gz

    3. **运行automake**:用户使用automake命令处理Makefile.am文件,生成Makefile.in。 4. **autoconf**:生成configure脚本,这个脚本会检查系统环境,然后根据Makefile.in生成最终的Makefile。 5. **编译与安装**:...

    automake autotools autoconf

    3. **编写Makefile.am**:在每个源代码目录下,编写`Makefile.am`,定义编译规则、目标文件、依赖关系等。 4. **运行automake**:执行`automake`命令,它会根据`Makefile.am`生成符合GNU规范的`Makefile.in`。 5. **...

Global site tag (gtag.js) - Google Analytics