使用autotools来进行Makefile的自动生成

下文参考自http://os.51cto.com/art/201003/185539.htm,结合自己的实验数据而成

在向大家详细介绍Linux Makefile之前,首先让大家了解下Linux Makefile,然后全面介绍Linux Makefile,希望对大家有用。由于毕业设计开发的平台是Linux, 为了在Linux进行,Linux Makefile的编写是必不可少的,为偷懒,我想使用autotools来进行Makefile的自动生成,在阅读大量的资料后,在理解的基础之上,做了一个小实验,过程记录得非常详细!

 

我的系统是: Ubuntu 10.04.4 LTS 位的Autotools工具的版本为2.65。为了编译一个简单的源文件hello.c,需要自动生成一个makefile,以下是步骤:

 

Linux Makefile第一步

在及目录下创建一个testAutomake文件夹进入testAutomake目录创建一个文件hello.c,其内容如下:

 

#include <stdio.h>

int main()

{

printf("Hello, Auto Makefile!\n");

return 0;

}

此时状态如下:

 

cai@ubuntu:~/testAutomake$ pwd

/home/cai/testAutomake 

cai@ubuntu:~/testAutomake$ ls

hello.c

 

Linux Makefile第二步:

 

运行 autoscan , 自动创建两个文件:  

autoscan.log  configure.scan此时状态如下: 

cai@ubuntu:~/testAutomake$ autoscan

cai@ubuntu:~/testAutomake$ ls

autoscan.log  configure.scan  hello.c

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

mv configure.scan configure.in

查看configure.in的内容:

 

#                                              -*- Autoconf -*-

# Process this file with autoconf toproduce a configure script.

 

AC_PREREQ([2.65])

AC_INIT([FULL-PACKAGE-NAME], [VERSION],[BUG-REPORT-ADDRESS])

AC_CONFIG_SRCDIR([hello.c])

AC_CONFIG_HEADERS([config.h])

 

# Checks for programs.

AC_PROG_CC

 

# Checks for libraries.

 

# Checks for header files.

 

# Checks for typedefs, structures, andcompiler characteristics.

 

# Checks for library functions.

 

AC_OUTPUT

解读以上的文件:

 

# -*- Autoconf -*- 

# Process this file with autoconf toproduce a configure script. 

# AC_PREREQ: 

# 确保使用的是足够新的Autoconf版本。如果用于创建configure的Autoconf的版 

# 本比version 要早,就在标准错误输出打印一条错误消息并不会创建configure。 

AC_PREREQ(2.65) 

# 初始化,定义软件的基本信息,包括设置包的全称,版本号以及报告BUG时需要用的邮箱地址 

AC_INIT(FULL-PACKAGE-NAME, VERSION,BUG-REPORT-ADDRESS) 

# 用来侦测所指定的源码文件是否存在,来确定源码目录的有效性 

AC_CONFIG_SRCDIR([hello.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, andcompiler characteristics. 

# Checks for library functions. 

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

AC_OUTPUT 

 

修改动作:

1.修改AC_INIT里面的参数:AC_INIT(hello,1.0, cai@126.com)

2.添加宏AM_INIT_AUTOMAKE, 它是automake所必备的宏,也同前面一样,PACKAGE是所要产生软件套件的名称,VERSION是版本编号。

3.在AC_OUTPUT后添加输出文件LinuxMakefile

 

修改后的结果:

 

#                                              -*- Autoconf -*-

# Process this file with autoconf toproduce a configure script.

 

AC_PREREQ([2.65])

AC_INIT(hello,1.0, cai@126.com)

AC_CONFIG_SRCDIR([hello.c])

AC_CONFIG_HEADERS([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, andcompiler characteristics.

 

# Checks for library functions.

 

AC_OUTPUT(Makefile)

第四步:运行 aclocal,

 

生成一个“aclocal.m4”文件和一个缓冲文件夹autom4te.cache,该文件主要处理本地的宏定义。此时的状态是:

 

cai@ubuntu:~/testAutomake$ aclocal

cai@ubuntu:~/testAutomake$ ls

aclocal.m4 autom4te.cache  autoscan.log  configure.in hello.c 

第五步:运行 autoconf, 目的是生成 configure 此时的状态是:

 

cai@ubuntu:~/testAutomake$ autoconf

cai@ubuntu:~/testAutomake$ ls

aclocal.m4 autom4te.cache  autoscan.log  configure configure.in  hello.c

第六步:运行 autoheader,它负责生成config.h.in文件。

 

该工具通常会从“acconfig.h”文件中复制用户附加的符号定义,因此此处没有附加符号定义,所以不需要创建“acconfig.h”文件。此时的状态是:

 

cai@ubuntu:~/testAutomake$ ls

aclocal.m4      autoscan.log  configure    hello.c

autom4te.cache  config.h.in  configure.in

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

 

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

 

这个Linux Makefile.am的内容如下:

 

AUTOMAKE_OPTIONS=foreign

bin_PROGRAMS=hello

hello_SOURCES=main.c

下面对该脚本文件的对应项进行解释。其中的AUTOMAKE_OPTIONS为设置automake的选项。由于GNU(在第1章中已经有所介绍)对自己发布的软件有严格的规范,比如必须附带许可证声明文件COPYING等,否则automake执行时会报错。

 

automake提供了三种软件等级:foreign、gnu和gnits,让用户选择采用,默认等级为gnu。在本例使用foreign等级,它只检测必须的文件。定义要产生的执行文件名。如果要产生多个执行文件,每个文件名用空格隔开。

 

hello_SOURCES定义“hello”这个执行程序所需要的原始文件。如果”hello”这个程序是由多个原始文件所产生的,则必须把它所用到的所有原始文件都列出来,并用空格隔开。例如:若目标体“main”需要“hello.c”、“m1.c”、“m1.h”三个依赖文件,则定义hello_SOURCES=hello.c m1.c m1.h。要注意的是,如果要定义多个执行文件,则对每个执行程序都要定义相应的file_SOURCES,其中的前缀file值为bin_PROGRAMS宏的值

 

其次使用automake对其生成“configure.in”文件,在这里使用选项“—adding-missing”可以让automake自动添加有一些必需的脚本文件。

运行后的状态是:

 

cai@ubuntu:~/testAutomake$ automake--add-missing

configure.in:8: installing `./install-sh'

configure.in:8: installing `./missing'

Makefile.am: installing `./depcomp'

cai@ubuntu:~/testAutomake$ ls

aclocal.m4      autoscan.log  configure    depcomp  install-sh   Makefile.in

autom4te.cache  config.h.in  configure.in  hello.c  Makefile.am missing

Linux Makefile第八步运行configure,

 

在这一步中,通过运行自动配置设置文件configure,把Makefile.in变成了最终的Makefile。运行的结果如下:

cai@ubuntu:~/testAutomake$ ./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 whether the C compiler works...yes

checking for C compiler default output filename... a.out

checking for suffix of executables...

checking whether we are cross compiling...no

checking for suffix of object files... o

checking whether we are using the GNU Ccompiler... yes

checking whether gcc accepts -g... yes

checking for gcc option to accept ISOC89... none needed

checking for style of include used bymake... 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

cai@ubuntu:~/testAutomake$ ls

aclocal.m4      config.h     config.status  depcomp    Makefile     missing

autom4te.cache  config.h.in configure      hello.c     Makefile.am  stamp-h1

autoscan.log    config.log  configure.in   install-sh  Makefile.in

Linux Makefile第九步运行 make,

 

对配置文件Makefile进行测试一下此时的状态如下:

 

cai@ubuntu:~/testAutomake$ make

make all-am

make[1]: Entering directory`/home/cai/testAutomake'

gcc -DHAVE_CONFIG_H -I.     -g -O2 -MT hello.o -MD -MP -MF.deps/hello.Tpo -c -o hello.o hello.c

mv -f .deps/hello.Tpo .deps/hello.Po

gcc -g -O2   -o hello hello.o 

make[1]: Leaving directory`/home/cai/testAutomake'

cai@ubuntu:~/testAutomake$ ls

aclocal.m4      config.h.in    configure.in  hello.o     Makefile.in

autom4te.cache  config.log    depcomp       install-sh   missing

autoscan.log    config.status  hello        Makefile     stamp-h1

config.h        configure      hello.c       Makefile.am 

 

Linux Makefile第十步运行生成的文件 hello:

cai@ubuntu:~/testAutomake$ ./hello

Hello, Auto Makefile!

至此,所有的步骤完成了,能够看到最终的成果,这是最让人开心的!!赞一下!

springboot003基于Springboot+Vue的图书个性化推荐系统的设计与实现毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值