在内核makefile $(调用cmd,tags)这里指的cmd是什么?

时间:2014-05-21 05:23:27

标签: makefile linux-kernel kernel kbuild

在Kernel Makefile中,我找到了如下代码:

ctags CTAGS CSCOPE: $(HEADERS) $(SOURCES) 

$(ETAGS) $(ETAGSFALGS) $(HEADERS) $(SOURCES)

$(call cmd, ctags)

另外,我在哪里可以找到宏或功能?

2 个答案:

答案 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 $@ $<