5. Makefile.am 中定义的宏和目标, 会指导 automake 生成指定的代码。例如,宏
bin_PROGRAMS 将导致编译和连接的目标被生成。
5 、运行 automake
命令:
$ automake --add-missing
configure.in: installing `./install-sh'
configure.in: installing `./mkinstalldirs'
configure.in: installing `./missing'
Makefile.am: installing `./depcomp'
automake 会根据 Makefile.am 文件产生一些文件,包含最重要的 Makefile.in 。
6 、执行 configure 生成 Makefile
$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output... 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 ANSI C... 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: executing depfiles commands
$ ls -l Makefile
-rw-rw-r-- 1 yutao yutao 15035 Oct 15 10:40 Makefile
9. 在符合 GNU Makefiel 惯例的 Makefile 中,包含了一些基本的预先定义的操作:
make
根据 Makefile 编译源代码,连接,生成目标文件,可执行文件。
make clean
清除上次的 make 命令所产生的 object 文件(后缀为“.o” 的文件)及可执行
文件。
make install
将编译成功的可执行文件安装到系统目录中,一般为/usr/local/bin 目录。
make dist
产生发布软件包文件(即 distribution package )。这个命令将会将可执行文
件及相关文件打包成一个 tar.gz 压缩的文件用来作为发布软件的软件包。
它会在当前目录下生成一个名字类似“PACKAGE-VERSION.tar.gz” 的文件。
PACKAGE 和 VERSION ,是我们在 configure.in 中定义的
AM_INIT_AUTOMAKE(PACKAGE, VERSION) 。
make distcheck
生成发布软件包并对其进行测试检查,以确定发布包的正确性。这个操作将自动
把压缩包文件解开,然后执行 configure 命令,并且执行 make ,来确认编译不
出现错误,最后提示你软件包已经准备好,可以发布了。
===============================================
helloworld-1.0.tar.gz is ready for distribution
===============================================
make distclean
类似 make clean ,但同时也将 configure 生成的文件全部删除掉,包括
Makefile 。
五、结束语
通过上面的介绍,你应该可以很容易地生成一个你自己的符合 GNU 惯例的
Makefile 文件及对应的项目文件。