假设我们要为hello.c文件生成 Makefile
步骤:
1. autoscan -> 生成 configure.scan等文件
修改configure.scan
AC_CONFIG_FILES(Makefile)
AC_OUTPUT(Makefile)
2. aclocal
3. autoconf
4. autoheader
5. vi Makefile.am
内容如下:
AUTOMAKE_OPTIONS= foreign
bin_PROGRAMS= hello
hello_SOURCES= hello.c
6.automake --add-missing
7. ./configure
经过上面的步骤之后,最终将生成Makefile文件
最后可以运行 make ,make all,make clena,make dist等命令
阅读(499) | 评论(0) | 转发(0) |