弄懂autoscan, autoconf, automake, Makefile.am

http://1.guotie.sinaapp.com/?p=111

之前一直把所有的h文件和c文件都放在同一个目录下,用的是通用Makefile,现在觉得需要现代化一点,于是进行了一些改造,分多个目录,多级目录,因此,学习一下autoscan,aclocal,autoconf,automake这些工具的使用。

本文不是讲解这些工具用法的,只是列出网上较好的文章。如果这些链接失效了,请通知我。

通用Makefile:http://bbs.chinaunix.net/viewthread.php?tid=909275&extra=&page=6

autoscan,autoconf,automake讲解,首先是这两篇文章,写的比较详细:

http://www.ibm.com/developerworks/cn/linux/l-makefile/

http://bbs.chinaunix.net/viewthread.php?tid=727270

然后,一个典型的实例,可以参考:

http://basiccoder.com/automake-introduction.html

最后,关于核心的Makefile.am,多级目录下Makefile.am的写法,可以参考这两篇文章:

http://bigwhite.blogbus.com/logs/80924710.html

http://jianlee.ylinux.org/Computer/C%E5%92%8CGNU%E5%BC%80%E5%8F%91/makefile-am.html

读懂这些,应该就足够了。总结一下,基本步骤如下:
1、autoscan ./
2、修改生成的configure.scan文件,增加AM_INIT_AUTOMAKE ,AC_CONFIG_FILES([Makefile])
3、aclocal
4、核心步骤:根据情况,编写Makefile.am
5、autoheader
6、touch NEWS README AUTHORS ChangeLog
7、automake -a
8、autoconf

注:运行autoscan时,会出现以下提示:

[shell]
autom4te: configure.ac: no such file or directory
autoscan: /usr/bin/autom4te failed with exit status: 1
[/shell]

这个提示不影响下面的步骤,因为configure.scan文件已经生成了。

你可能感兴趣的:(c,shell,File,工具,makefile)