在Kernel Makefile中,我找到了如下代码:
ctags CTAGS CSCOPE: $(HEADERS) $(SOURCES)
$(ETAGS) $(ETAGSFALGS) $(HEADERS) $(SOURCES)
$(call cmd, ctags)
另外,我在哪里可以找到宏或功能?
答案 0 :(得分:1)
如果你运行make -p
,它将打印所有变量,规则等的整个数据库,其中包含最后一次定义的行号。
答案 1 :(得分:1)
在内核v4.1上使用MadScientist的方法:
make -p | grep -B1 -E '^cmd '
我们发现:
# makefile (from `scripts/Kbuild.include', line 211)
cmd = @$(echo-cmd) $(cmd_$(1))
scripts/Kbuild.include
包含在顶级Makefile
中。它还包含:
echo-cmd = $(if $($(quiet)cmd_$(1)),\
echo ' $(call escsq,$($(quiet)cmd_$(1)))$(echo-why)';)
quiet
:设置在顶级makefile,具体取决于V
的值。
将是:
quiet_
打印CC file.c
V=
silent_
不能在make -s
escsq
定义为:
squote := '
escsq = $(subst $(squote),'\$(squote)',$1)
它会转义单引号,以便echo '$(call escsq,Letter 'a'.'
在sh
中正确打印。
echo-why
:在Kbuild.include
进一步定义。
它用于make V=2
,并说明为什么要重新制作目标。
make tags
的设置已在Makefile
:
quiet_cmd_tags = GEN $@
cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@
tags TAGS cscope gtags: FORCE
$(call cmd,tags)
其中显示了在kbuild上调用命令的典型使用模式:
quiet_cmd_XXX = NAME $@
cmd_XXX = actual-command $@
target: prerequisites
$(call cmd,tags)
对Makefile
的评论解释了如何使make
输出变得更漂亮:
# Beautify output
# ---------------------------------------------------------------------------
#
# Normally, we echo the whole command before executing it. By making
# that echo $($(quiet)$(cmd)), we now have the possibility to set
# $(quiet) to choose other forms of output instead, e.g.
#
# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<