configure.ac语法规则

发布时间 2023-10-30 16:16:13作者: 秋来叶黄

AC_CONFIG_FILES

所有的Makefile.ac文件必须在AC_CONFIG_FILES中指定

AC_CONFIG_FILES([
	lib/Makefile
	lib/aaa/Makefile
	lib/bbb/Makefile
	lib/ccc/Makefile
	web/Makefile
	tools/Makefile
	tools/ddd/Makefile
	tools/eee/Makefile
	tools/fff/Makefile
	Makefile
	])

如果没有指定,就不会生成对应的Makefile,编译时就找不到。