为了编译一个简单的源文件main.c,需要自动生成一个makefile,以下是步骤:第一步:----------在/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]# lsmain.c[root@localhost main]# 第二步:----------运行 autoscan , 自动创建两个文件: autoscan.log configure.scan此时状态如下:[root@localhost main]# autoscan[root@localhost main]# lsautoscan.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]# lsaclocal.m4 autom4te.cache autoscan.log configure.in configure.in~ main.c[root@localhost main]# 第五步:运行 autoconf, 目的是生成 configure 此时的状态是:[root@localhost main]# autoconf[root@localhost main]# lsaclocal.m4 autoscan.log configure.in main.cautom4te.cache configure configure.in~[root@localhost main]# 第六步:运行 autoheader,它负责生成config.h.in文件。该工具通常会从“acconfig.h”文件中复制用户附加的符号定义,因此此处没有附加符号定义,所以不需要创建“acconfig.h”文件。此时的状态是:[root@localhost main]# autoheader[root@localhost main]# lsaclocal.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=foreignbin_PROGRAMS=mainmain_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-missingconfigure.in:8: installing `./missing'configure.in:8: installing `./install-sh'Makefile.am: installing `./depcomp'[root@localhost main]# lsaclocal.m4 config.h.in configure.in~ main.c Makefile.inautom4te.cache configure depcomp Makefile.am missingautoscan.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 -cchecking whether build environment is sane... yeschecking for a thread-safe mkdir -p... /bin/mkdir -pchecking for gawk... gawkchecking whether make sets $(MAKE)... yeschecking for gcc... gccchecking for C compiler default output file name... a.outchecking whether the C compiler works... yeschecking whether we are cross compiling... nochecking for suffix of executables... checking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether gcc accepts -g... yeschecking for gcc option to accept ISO C89... none neededchecking for style of include used by make... GNUchecking dependency style of gcc... gcc3configure: creating ./config.statusconfig.status: creating Makefile
config.status: creating config.hconfig.status: executing depfiles commands[root@localhost main]# lsaclocal.m4 config.h.in configure.in main.c Makefile.inautom4te.cache config.log configure.in~ Makefile missingautoscan.log config.status depcomp Makefile.am stamp-h1config.h configure install-sh Makefile.am~[root@localhost main]# ------------------------------------------------第九步运行 make,对配置文件Makefile进行测试一下此时的状态如下:------------------------------------------------[root@localhost main]# makecd . && /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 --recheckrunning CONFIG_SHELL=/bin/sh /bin/sh ./configure --no-create --no-recursionchecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for a thread-safe mkdir -p... /bin/mkdir -pchecking for gawk... gawkchecking whether make sets $(MAKE)... yeschecking for gcc... gccchecking for C compiler default output file name... a.outchecking whether the C compiler works... yeschecking whether we are cross compiling... nochecking for suffix of executables... checking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether gcc accepts -g... yeschecking for gcc option to accept ISO C89... none neededchecking for style of include used by make... GNUchecking dependency style of gcc... gcc3configure: creating ./config.status/bin/sh ./config.statusconfig.status: creating Makefileconfig.status: creating config.hconfig.status: config.h is unchangedconfig.status: executing depfiles commandscd . && /bin/sh /root/project/main/missing --run autoheaderrm -f stamp-h1touch config.h.inmake all-ammake[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.cmv -f .deps/main.Tpo .deps/main.Pogcc -g -O2 -o main main.o cd . && /bin/sh ./config.status config.hconfig.status: creating config.hconfig.status: config.h is unchangedmake[1]: Leaving directory `/root/project/main'[root@localhost main]# lsaclocal.m4 autoscan.log config.h.in config.status configure.in depcomp main main.o Makefile.am Makefile.in stamp-h1autom4te.cache config.h config.log configure configure.in~ install-sh main.c Makefile Makefile.am~ missing[root@localhost main]# ------------------------------------------------第十步运行生成的文件 main:------------------------------------------------[root@localhost main]# ./mainHello, Auto Makefile![root@localhost main]# ------------------------------------------------我用的是ubuntu以上就是全文了.但有一处要改:用aclocal全报有一个m4文件有错.找到报错的那一行.把变量加个中括号就可以了.下面来分别解释一下上面的文件和命令: autoscan : 用来扫描源代码的目录生成configure.scan,如果不指定扫描目录,则他会扫描当前工作目录, configure.scan : 包含了系统配置的基本选项,一般用来制作configure.in文件。 configure.in : 该文件的内容都是一些宏,其中的顺序没有硬性的规定,不过建议的顺序是: AC_INIT 测试程序 测试函数 测试头文件 测试类型定义 测试结构 测试编译器 测试库函数 测试系统调用 AC_OUTPOUT 更详细的请参阅《GNU/Linux编程指南(第二版)》
aclocal: 根据configure.in的内容自动生成aclocal.m4文件,其定义为:alocal : creat alocal.m4 by scanning configure.ac
alocal.m4 : 在执行automake的时候还需要其他的一些宏,这就由alocal产生。当有了 configure.in和alocal.m4两个宏文件后,就可以用automake来产生Makefile.in文件了。
autoconf: 用来产生configure脚本程序。
configure: 他能根据不同的系统,产生不同的Makefile,从而是我们的程序具有可移植性。他还有一些参数:
--cache-file=FILE 测试系统的特性,并将结果放到FILE中
--help 输出帮助信息
--no-create 阻止其生成输出文件
--quiet 执行是不做输出
--silent 同上,若设置则不会有任何输出到屏幕
--version 输出automake的版本号
--prefix=PEWFIX 安装位置设置(常用)
--exec-prefix=EPREFIX 设置结构倚赖的文件的安装位置
--bindir=DIR 指定可执行文件的安装位置.
--sbindir=DIR 指定超级用户可执行的安装位置.
--libexecdir=DIR 指定可执行支持文件的安装位置.
--datadir=DIR 指定通用数据文件的安装位置.
--sysconfdir=DIR 指定只读数据的安装位置.
--sharedstatedir=DIR 指定共享的可写数据的安装位置.
--localstatedir=DIR 指定(非共享)可写数据的安装位置.
--libdir=DIR 指定库文件的安装位置.
--includedir=DIR 指定C头文件的安装位置.
--oldincludedir=DIR 指定为除GCC外编译器安装的C头文件的安装位置.
--infodir=DIR 指定Info格式文档的安装位置.
--mandir=DIR 指定手册页的安装位置.
--srcdir=DIR 源码的位置
--program-prefix=PREFIX 增加安装程序名字前缀.
--program-suffix=SUFFIX 增加安装程序名字后缀.
--program-transform-name=PROGRAM 产生安装名
--build=BUILD 指定软件包安装的系统平台.
--host=HOST 指定软件运行的系统平台.
--target=GARGET 指定软件面向的系统平台
--disable-FEATURE 提供为大型选项的编译时配置
--enable-FEATURE[=ARG] 提供了一些默认被禁止的特性
--enable-FEATURE=no 同--disable-FEATURE
--with-PACKAGE[=ARG] 使用已有软件包和库
--with-PACKAGE=no --without-PACKAGE同义
--without-PACKAGE 禁止软件包与系统已有的软件包交互
--x-includes=DIR --with-PACKAGE的一个特例
--x-libraries=DIR 向configure脚本指明包含X11库的目录
makefile.am : 根据他生成makefile.in文件。
AUTOMAKE_OPTIONS = foreign 设置automake的选项,设置成foreign表示按一般软件处理。
bin_PROGRAMS = filename1 [...] 产生的可执行文件名
filename1_SOURCES = f1.c f2.c 指明生成filename可执行文件的源码
[...]
filename_LDADD =
filename_LDFLAGS =
filename_DEPENDENCIES =
静态库lib_LIBRARIES = libfilename.a
filename_a_SOURCES =
filename_a_LDADD =
filename_a_LIBADD =
filename_a_LDFALGS =
头文件include_HEADERS = filename.h
数据文件data_DATA = data1 data2
(对于可执行文件和静态库类型如果只想编译,不想安装到系统中,可以用:noinst_PROGRAMS代替bin_PROGRAMS
和noinst_LIBRARIES代替lib_LIBRARIES)
automake : 使用automake --add-missing来生成Makefile.in文件,后面的选项使我们制作出来的Makfile符合GNU的习惯,
Makefile : GNU的习惯:
make 编译,连接,生成可执行文件;
make clean 清除编译产生的obj文件,以及可执行文件;
make install 安装到系统中,一般是/usr/local/bin
make dist 将源码打包,以便发布
make diskcheck 生成包,并对其进行检查,以确保其正确性;
以上相关链接:http://www.cnblogs.com/Safe3/archive/2009/02/10/1387460.html
http://blog.csdn.net/hadesgin/article/details/6704371
posted on 2012-11-08 15:37
王海光 阅读(1481)
评论(0) 编辑 收藏 引用 所属分类:
Linux