使用Automake,Autoconf生成Makefile
 
使用Automake,Autoconf生成Makefile
Unix 上写过程序的人尤其是用 C 来开发程序的人一般都遇到过 Makefile,用 make 来开发和编译程序的确很方便,可是要写出一个Makefile就不那么简单了。GNU Make 那份几百页的文件,让许多人害怕。当然,现在关于make的文档比较多,不过写一个Makefile总是一件很烦人的事情,GNU Autoconf Automake 这两个软件就是帮助程序开发者轻松产生Makefile 文件的。现在的GNU软件如Apache, MySQL Minigui等都是利用Autoconf,Automake实现自动编译的。用户只要使用 ./configure”, “make”, “make install” 就可以把程序安裝到系统中。

简介

Makefile 基本上就是『目标』(target), 『关联』(dependencies) 和『动作』三者所组成的一系列规则。而 make 就是根据 Makefile 的规则决定如何编译 (compile) 和连接 (link) 程序或者其它动作。当然,make 可做的不只是编译和连接程序,例如 FreeBSD port collection 中,Makefile还可以做到自动下载远程程序,解压缩 (extract) , 打补丁 (patch),设定,然后编译,安装到系统中。

Makefile 基本结构虽然很简单,但是妥善运用这些规则就可以变换出许多不同的花样。却也因为这样,许多人刚开始学写Makefile 时会觉得没有规范可以遵循,每个人写出来的Makefile都不大一样,不知道从哪里下手,而且常常会受到开发环境的限制,只要环境参数不同或者路径更 改,可能 Makefile 就得跟着修改。虽然有GNU Makefile Conventions (GNU Makefile惯例)制订出一些在进行 GNU 程序设计时写 Makefile 的一些标准和规范,但是其内容很长而且很复杂,并且经常作一些调整,为了减轻程序开发人员维护Makefile 的负担,就出现了Automake

利 用Automake,编程者只需要写一些预先定义好的宏 (macro),提交给Automake处理,就
会产生一个可以供 Autoconf 使用的 Makefile.in文件。再配合使用 Autoconf产生的自动配置文件 configure 即可产生一份符合 GNU Makefile 惯例的 Makeifle 了。


需要的软件

在开始使用 Automake 之前,首先确认你的系统安装有如下软件:

1. GNU Automake

2. GNU Autoconf

3. GNU m4

4. perl

5. GNU Libtool (如果你需要产生 shared library)



最 好也使用 GNU C/C++ 编译器 、GNU Make 以及其它 GNU 的工具程序来作为开发的环境,这些工具都是属于 Open Source Software 不但免费而且功能强大。如果你是使用 Red Hat Linux 可以到所有上述软件的 rpm 文件。 
一个简单的例子

Automake 所产生的 Makefile 除了可以做到程序的编译和连接,也可以用来生成文档(manual page, info 文件等),还可以有把源码文件包装起来以供发布,所以程序源代码所存放的目录结构最好符合GNU 的标准惯例,接下来就用一个hello.c 來做为例子。




工作 目录下建立一个新的子目录devel,再在 devel 下建立一个"hello"'' 的子目录,这个目录将

作为存放 hello这个程序及其相关文件的地方:



% mkdir devel;cd devel;mkdir hello;cd hello



用编辑器写一个hello.c文件,
#include <stdio.h>
int main(int argc, char** argv)
{
printf(Hello, GNU!n);
return 0;
}


接下来就要用 Autoconf Automake 來产生 Makefile 文件了,

1. autoscan 产生一个 configure.in 的原型,执行autoscan 后会产生一个configure.scan 的文件,可以用它作为 configure.in文件的蓝本。

  % autoscan

    % ls

    configure.scan hello.c

2. 编辑 configure.scan文件,如下所示,並且改名为configure.in
dnl Process this file with Autoconf to produce a configure scrīpt.
AC_INIT(hello.c)
AM_INIT_AUTOMAKE(hello, 1.0)
dnl Checks for programs.
AC_PROG_CC
dnl Checks for libraries.
dnl Checks for header files.
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
AC_OUTPUT(Makefile)
 
3. 执行 aclocal Autoconf ,分別会产生 aclocal.m4 configure 两个文件
 
% aclocal
% Autoconf
% ls
aclocal.m4 configure configure.in hello.c
 
4. 编辑 Makefile.am 文件,內容如 下
 
AUTOMAKE_OPTIONS= foreign
bin_PROGRAMS= hello
hello_SOURCES= hello.c
 
5. 执行 Automake --add-missing Automake 会根据Makefile.am 文件产生一些文件,包含最重要的Makefile.in
% Automake --add-missing
Automake: configure.in: installing `./install-sh''
Automake: configure.in: installing `./mkinstalldirs''
Automake: configure.in: installing `./missing''
 
6. 最后执行 ./configure:
% ./configure
creating cache ./config.cache
checking for a BSD /usr/bin/install -c
checking whether build environment yes
checking whether make sets ${MAKE}... yes
checking for found
checking for found
checking for found
checking for found
checking for found
checking gcc
checking whether the C compiler (gcc ) yes
checking whether the C compiler (gcc ) is no
checking whether we are using yes
checking whether gcc accepts -g... yes
updating cache ./config.cache
creating ./config.status
creating Makefile
gnu编译器$ ls
Makefile aclocal.m4 config.status hello.c mkinstalldirs
Makefile.am config.cache configure install-sh
Makefile.in config.log configure.in missing
 
現在你的目录下已经产生了一个 Makefile 文件,输入make指令就可以编译 hello.c 了!
 
% make
gcc -DPACKAGE="hello" -DVERSION="1.0" -I. -I. -g -O2 -c hello.c
gcc -g -O2 -o hello hello.o
你还可以试试 make cleanmake installmake dist
[root@localhost hello]# make clean
test -z "hello " || rm -f hello
rm -f *.o core *.core
[root@localhost hello]# make install
gcc -DPACKAGE="hello" -DVERSION="1.0" -I. -I. -g -O2 -c hello.c
gcc -g -O2 -o hello hello.o
make[1]: Entering directory `/home/joe/devel/hello''
/bin/sh ./mkinstalldirs /usr/local/bin
/usr/bin/install -c hello /usr/local/bin/hello
make[1]: Nothing to be done for `install-data-am''.
make[1]: Leaving directory `/home/joe/devel/hello''
[root@localhost hello]# make dist
rm -rf hello-1.0
mkdir hello-1.0
chmod 777 hello-1.0
here=`cd . && pwd`;
top_distdir=`cd hello-1.0 && pwd`;
distdir=`cd hello-1.0 && pwd`;
cd .
&& Automake --include-deps --build-dir=$here --srcdir-name=. --output-dir=$top_distdir --foreign Makefile
chmod -R a+r hello-1.0
GZIP=--best gtar chozf hello-1. hello-1.0
rm -rf hello-1.0
 

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。