前言
GNU make 的编写(编程)非常类似于元编程(metaprogramming),整个MAKE 的运行分成2部分:
- 生成规则(rule):
- 执行规则(rule) :
什么是规则(rule)
规则是MAKE 的核心,驱动MAKE执行的pump。</p>
规则(rule) 范式<
Target: Prerequisites
Recipes
可以理解成
目标文件(target)的生成依赖于Prerequisites,并结合命令集(Recipes)生成。
- Prerequisites 可以为空
- Recipes 可以为空
简单例子
out.text:in.txt
cp in.txt out.txt
如果out.txt 文件不存在,且in.txt文件存在,那么执行recipe(cp)
out.txt 文件生成依赖in.txt,这里通过cp来生成out.txt
如果out.txt 文件已经存在,且in.txt没有发生变化,那么cp的命令就不会再执行。
编译流程
调试工具
- remake
非常强大,类似GDB,支持单步,断点。 - gmd: 侵入式,效果未知,因为remake已经足够好
官方文档
Q&A
- GNU make will remove the intermediate files which generated by pattern rule
- assigning-variable-value-inside-recipe
- Get the Top dir of the makesystem
通常大型软件系统会有复杂的makesystem,把make相关的脚本文件统一放置,便于其他模块的引用。常见是分模块include makesystem中的common makefile,这个时候,makesystem中的makefile需要知道自己的绝对路径,便于资源路径的定位,common-gnu-makefile-directory-path - phony target
A phony target should not be a prerequisite of a real target file; if it is, its recipe will be run every time make goes to update that file. As long as a phony target is never a prerequisite of a real target, the phony target recipe will be executed only when the phony target is a specified goal (see Arguments to Specify the Goals)
- 关于并行
以下的例子无法并行,因为只有一条rule。
用$(info) 来调试makefile
subdirs: for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir; \ done