013 linux顶层makefile翻译成中文解释【4.1.15】

VERSION = 4
PATCHLEVEL = 1
SUBLEVEL = 15
EXTRAVERSION =
NAME = Series 4800

# *文档*
# 要查看典型目标的列表,请执行“make help”
# 更多信息可以在./README中找到
# 此文件中的注释仅针对开发人员,请勿
# 期望通过阅读此文件来了解如何构建内核。

# o 不要使用 make 的内置规则和变量
#(这会提高性能并避免难以调试的行为);
# o 查找相对于内核 src 根目录的 make include 文件
MAKEFLAGS += -rR --include-dir=$(CURDIR)

# 避免有趣的字符集依赖
unexport LC_ALL
LC_COLLATE=C
LC_NUMERIC=C
export LC_COLLATE LC_NUMERIC

# 避免干扰 shell 环境设置
unexport GREP_OPTIONS

# 我们正在使用递归构建,所以我们需要做一些思考
# 获得正确的排序。
#
# 最重要的是:子 Makefile 应该只修改以下文件
# 他们自己的目录。如果在某个目录中我们依赖于
# 另一个目录中的文件(这种情况不常发生,但经常发生)
# 链接最终的built-in.o目标时不可避免的
# 转入 vmlinux),我们将在另一个目录中调用子 make,并且
# 之后我们确定其他目录中的所有内容
# 现已更新。
#
# 我们需要修改具有全局属性的文件的唯一情况
# 效果因此被分离出来并在递归之前完成
# 开始降序。他们现在被明确列为
# 准备规则。

# 美化输出
#------------------------------------------------- --------------------------
#
# 通常,我们在执行之前回显整个命令。通过制作
# echo $($(quiet)$(cmd)),我们现在可以设置
# $(quiet) 选择其他形式的输出,例如
#
# Quiet_cmd_cc_o_c = 编译 $(RELDIR)/$@
# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
#
# 如果 $(quiet) 为空,则将打印整个命令。
# 如果设置为“quiet_”,则仅打印简短版本。
# 如果设置为“silent_”,则不会打印任何内容,因为
# 变量 $(silent_cmd_cc_o_c) 不存在。
#
# 一个简单的变体是在命令前面加上 $(Q) - 这很有用
# 用于在非详细模式下隐藏的命令。
#
#   $(Q)ln $@ :<
#
# 如果 KBUILD_VERBOSE 等于 0,则上述命令将被隐藏。
# 如果 KBUILD_VERBOSE 等于 1,则显示上述命令。
#
# 为了更加关注警告,默认情况下不要那么冗长
# 使用“make V=1”查看完整命令

ifeq ("$(origin V)", "command line")
  KBUILD_VERBOSE = $(V)
endif
ifndef KBUILD_VERBOSE
  KBUILD_VERBOSE = 0
endif

ifeq ($(KBUILD_VERBOSE),1)
  quiet =
  Q =
else
  quiet=quiet_
  Q = @
endif

# 如果用户正在运行 make -s (静默模式),则抑制回显
# 命令

ifneq ($(filter 4.%,$(MAKE_VERSION)),)  # make-4
ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),)
  quiet=silent_
endif
else                    # make-3.8x
ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
  quiet=silent_
endif
endif

export quiet Q KBUILD_VERBOSE

# kbuild 支持将输出文件保存在单独的目录中。
# 要在单独的目录中定位输出文件,支持两种语法。
# 在这两种情况下,工作目录必须是内核 src 的根目录。
# 1) O=
# 使用“make O=dir/to/store/output/files/”
#
# 2) 设置 KBUILD_OUTPUT
# 设置环境变量KBUILD_OUTPUT指向该目录
# 输出文件应放置的位置。
# 导出 KBUILD_OUTPUT=dir/to/store/output/files/
# make
#
# O= 赋值优先于 KBUILD_OUTPUT 环境
# variable.

# KBUILD_SRC 在 OBJ 目录中调用 make 时设置
# KBUILD_SRC 不适合普通用户使用(目前)
ifeq ($(KBUILD_SRC),)

# OK,在内核src所在目录中调用Make
# 我们是否想将输出文件放置在单独的目录中?
ifeq ("$(origin O)", "command line")
  KBUILD_OUTPUT := $(O)
endif

# 当命令行上没有给出时,这是我们的默认目标
PHONY := _all
_all:

# 取消顶层Makefile的隐式规则
$(CURDIR)/Makefile Makefile: ;

ifneq ($(KBUILD_OUTPUT),)
# 在输出目录中调用第二个make,传递相关变量
# 检查输出目录是否确实存在
saved-output := $(KBUILD_OUTPUT)
KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
                                && /bin/pwd)
$(if $(KBUILD_OUTPUT),, \
     $(error failed to create output directory "$(saved-output)"))

PHONY += $(MAKECMDGOALS) sub-make

$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
    @:

sub-make: FORCE
    $(Q)$(MAKE) -C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR) \
    -f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS))

# 将处理留给上面的 make 调用
skip-makefile := 1
endif # ifneq ($(KBUILD_OUTPUT),)
endif # ifeq ($(KBUILD_SRC),)

# 如果这是 make 的最终调用,我们将处理 Makefile 的其余部分
ifeq ($(skip-makefile),)

# 不要打印“进入目录...”,
# 但我们想在进入输出目录时显示它
# 以便 IDE/编辑器能够理解相对文件名。
MAKEFLAGS += --no-print-directory

# 调用源代码检查器(默认情况下,“稀疏”)作为
#C 编译。
#
# 使用“make C=1”仅检查重新编译的文件。
# 使用“make C=2”来启用对*所有*源文件的检查,无论
# 是否重新编译。
#
# 有关更多详细信息,请参阅文件“Documentation/sparse.txt”,包括
# 从哪里获取“稀疏”实用程序。

ifeq ("$(origin C)", "command line")
  KBUILD_CHECKSRC = $(C)
endif
ifndef KBUILD_CHECKSRC
  KBUILD_CHECKSRC = 0
endif

# 使用 make M=dir 指定要构建的外部模块的目录
# 旧语法 make ... SUBDIRS=$PWD 仍然支持
# 设置环境变量KBUILD_EXTMOD优先
ifdef SUBDIRS
  KBUILD_EXTMOD ?= $(SUBDIRS)
endif

ifeq ("$(origin M)", "command line")
  KBUILD_EXTMOD := $(M)
endif

# 如果构建外部模块,我们不关心 all: 规则
# 但_all 依赖于模块
PHONY += all
ifeq ($(KBUILD_EXTMOD),)
_all: all
else
_all: modules
endif

ifeq ($(KBUILD_SRC),)
# 在源代码树中构建
        srctree := .
else
        ifeq ($(KBUILD_SRC)/,$(dir $(CURDIR)))
# 在源代码树的子目录中构建
                srctree := ..
        else
                srctree := $(KBUILD_SRC)
        endif
endif
objtree     := .
src     := $(srctree)
obj     := $(objtree)

VPATH       := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))

export srctree objtree VPATH


# SUBARCH 告诉用户模式构建底层架构是什么。就这样设定了
# 首先,如果发生用户模式构建,则命令上的“ARCH=um”
# 行覆盖下面 ARCH 的设置。如果发生本机构建,
# 然后 ARCH 被分配,获取正常获取的任何值,并且
# SUBARCH 随后被忽略。

SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
                  -e s/sun4u/sparc64/ \
                  -e s/arm.*/arm/ -e s/sa110/arm/ \
                  -e s/s390x/s390/ -e s/parisc64/parisc/ \
                  -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
                  -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ )

# 交叉编译并选择不同的 gcc/bin-utils 集
#------------------------------------------------- --------------------------
#
# 对其他架构进行交叉编译时应设置ARCH
# 到目标架构。 (有关可能性,请参见 arch/* )。
# ARCH 可以在调用 make 期间设置:
# 使 ARCH=ia64
# 另一种方法是在环境中设置 ARCH。
# 默认 ARCH 是执行 make 的主机。

# CROSS_COMPILE 指定用于所有可执行文件的前缀
# 编译期间。仅 gcc 和相关的 bin-utils 可执行文件
# 以 $(CROSS_COMPILE) 为前缀。
# CROSS_COMPILE 可以在命令行上设置
# 使 CROSS_COMPILE=ia64-linux-
# 或者可以在环境中设置 CROSS_COMPILE。
# 第三种选择是将设置存储在 .config 中,以便简单明了
# 配置的内核构建目录中的“make”始终使用它。
# CROSS_COMPILE 的默认值不为可执行文件添加前缀
# 注意:某些架构在其 arch/*/Makefile 中分配 CROSS_COMPILE
ARCH        ?= $(SUBARCH)
CROSS_COMPILE   ?= $(CONFIG_CROSS_COMPILE:"%"=%)

#compile.h 中存在的架构
UTS_MACHINE     := $(ARCH)
SRCARCH     := $(ARCH)

# x86 的附加 ARCH 设置
ifeq ($(ARCH),i386)
        SRCARCH := x86
endif
ifeq ($(ARCH),x86_64)
        SRCARCH := x86
endif

# sparc 的附加 ARCH 设置
ifeq ($(ARCH),sparc32)
       SRCARCH := sparc
endif
ifeq ($(ARCH),sparc64)
       SRCARCH := sparc
endif

# sh 的附加 ARCH 设置
ifeq ($(ARCH),sh64)
       SRCARCH := sh
endif

# 磁贴的附加 ARCH 设置
ifeq ($(ARCH),tilepro)
       SRCARCH := tile
endif
ifeq ($(ARCH),tilegx)
       SRCARCH := tile
endif

# 在哪里找到特定于 arch 的 headers
hdr-arch  := $(SRCARCH)

KCONFIG_CONFIG  ?= .config
export KCONFIG_CONFIG

# kbuild 使用的 SHELL
CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
      else if [ -x /bin/bash ]; then echo /bin/bash; \
      else echo sh; fi ; fi)

HOSTCC       = gcc
HOSTCXX      = g++
HOSTCFLAGS   = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu89
HOSTCXXFLAGS = -O2

ifeq ($(shell $(HOSTCC) -v 2>&1 | grep -c "clang version"), 1)
HOSTCFLAGS  += -Wno-unused-value -Wno-unused-parameter \
        -Wno-missing-field-initializers -fno-delete-null-pointer-checks
endif

# 决定是否构建内置、模块化或两者兼而有之。
# 通常情况下,只需进行内置即可。

KBUILD_MODULES :=
KBUILD_BUILTIN := 1

# 如果我们只有“make module”,就不要编译内置对象。
# 当我们使用 modversions 构建模块时,我们需要考虑
# 下降期间的内置对象也是如此,以便
# 在记录校验和之前,请确保校验和是最新的。

ifeq ($(MAKECMDGOALS),modules)
  KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
endif

# 如果我们有“make <whatever> 模块”,则编译模块
# 除了我们所做的一切之外。
# 只需“make”或“make all”也可以构建模块

ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
  KBUILD_MODULES := 1
endif

ifeq ($(MAKECMDGOALS),)
  KBUILD_MODULES := 1
endif

export KBUILD_MODULES KBUILD_BUILTIN
export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD

ifneq ($(CC),)
ifeq ($(shell $(CC) -v 2>&1 | grep -c "clang version"), 1)
COMPILER := clang
else
COMPILER := gcc
endif
export COMPILER
endif

# 我们需要一些通用定义(不要尝试重新创建文件)。
scripts/Kbuild.include: ;
include scripts/Kbuild.include

# 创建变量(CC 等...)
AS      = $(CROSS_COMPILE)as
LD      = $(CROSS_COMPILE)ld
CC      = $(CROSS_COMPILE)gcc
CPP     = $(CC) -E
AR      = $(CROSS_COMPILE)ar
NM      = $(CROSS_COMPILE)nm
STRIP       = $(CROSS_COMPILE)strip
OBJCOPY     = $(CROSS_COMPILE)objcopy
OBJDUMP     = $(CROSS_COMPILE)objdump
AWK     = awk
GENKSYMS    = scripts/genksyms/genksyms
INSTALLKERNEL  := installkernel
DEPMOD      = /sbin/depmod
PERL        = perl
PYTHON      = python
CHECK       = sparse

CHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
          -Wbitwise -Wno-return-void $(CF)
CFLAGS_MODULE   =
AFLAGS_MODULE   =
LDFLAGS_MODULE  =
CFLAGS_KERNEL   =
AFLAGS_KERNEL   =
CFLAGS_GCOV = -fprofile-arcs -ftest-coverage


# 当您必须仅引用 UAPI 目录时,请使用 USERINCLUDE。
USERINCLUDE    := \
        -I$(srctree)/arch/$(hdr-arch)/include/uapi \
        -Iarch/$(hdr-arch)/include/generated/uapi \
        -I$(srctree)/include/uapi \
        -Iinclude/generated/uapi \
                -include $(srctree)/include/linux/kconfig.h

# 当必须引用 include/ 目录时使用 LINUXINCLUDE。
# 需要与O=选项兼容
LINUXINCLUDE    := \
        -I$(srctree)/arch/$(hdr-arch)/include \
        -Iarch/$(hdr-arch)/include/generated/uapi \
        -Iarch/$(hdr-arch)/include/generated \
        $(if $(KBUILD_SRC), -I$(srctree)/include) \
        -Iinclude \
        $(USERINCLUDE)

KBUILD_CPPFLAGS := -D__KERNEL__

KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
           -fno-strict-aliasing -fno-common \
           -Werror-implicit-function-declaration \
           -Wno-format-security \
           -std=gnu89

KBUILD_AFLAGS_KERNEL :=
KBUILD_CFLAGS_KERNEL :=
KBUILD_AFLAGS   := -D__ASSEMBLY__
KBUILD_AFLAGS_MODULE  := -DMODULE
KBUILD_CFLAGS_MODULE  := -DMODULE
KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds

# 从 include/config/kernel.release 中读取 KERNELRELEASE (如果存在)
KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
KERNELVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)

export VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION
export ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC
export CPP AR NM STRIP OBJCOPY OBJDUMP
export MAKE AWK GENKSYMS INSTALLKERNEL PERL PYTHON UTS_MACHINE
export HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS

export KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS
export KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE CFLAGS_GCOV CFLAGS_KASAN
export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE
export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL
export KBUILD_ARFLAGS

# 编译out-of-tree模块时,将MODVERDIR放入模块中
# 树而不是内核树。内核树可能
# 甚至是只读的。
export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions

# find ... 语句中要忽略的文件

export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o    \
              -name CVS -o -name .pc -o -name .hg -o -name .git \) \
              -prune -o
export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
             --exclude CVS --exclude .pc --exclude .hg --exclude .git

# =================================================== ==========================
# *config 目标和构建目标之间共享的规则

# 脚本中内置的基本助手/
PHONY += scripts_basic
scripts_basic:
    $(Q)$(MAKE) $(build)=scripts/basic
    $(Q)rm -f .tmp_quiet_recordmcount

# 为了避免出现任何隐式规则,请定义一个空命令。
scripts/basic/%: scripts_basic ;

PHONY += outputmakefile
#outputmakefile 在输出目录中生成一个 Makefile,如果使用
# 单独的输出目录。这允许方便地使用 make
# output directory.
outputmakefile:
ifneq ($(KBUILD_SRC),)
    $(Q)ln -fsn $(srctree) source
    $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \
        $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
endif

# 支持在 asm-generic 中使用通用标头
PHONY += asm-generic
asm-generic:
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \
                src=asm obj=arch/$(SRCARCH)/include/generated/asm
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \
                src=uapi/asm obj=arch/$(SRCARCH)/include/generated/uapi/asm

# 确保我们不包含任何 *config 目标的 .config
# 尽早捕获它们,并将它们交给scripts/kconfig/Makefile
# 调用make时允许指定更多目标,包括
# 混合*配置目标和构建目标。
# 例如'make oldconfig all'。
# 检测何时指定混合目标,并进行第二次调用
# of make so .config 也不包含在这种情况下(对于 *config)。

version_h := include/generated/uapi/linux/version.h
old_version_h := include/linux/version.h

no-dot-config-targets := clean mrproper distclean \
             cscope gtags TAGS tags help% %docs check% coccicheck \
             $(version_h) headers_% archheaders archscripts \
             kernelversion %src-pkg

config-targets := 0
mixed-targets  := 0
dot-config     := 1

ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
    ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
        dot-config := 0
    endif
endif

ifeq ($(KBUILD_EXTMOD),)
        ifneq ($(filter config %config,$(MAKECMDGOALS)),)
                config-targets := 1
                ifneq ($(words $(MAKECMDGOALS)),1)
                        mixed-targets := 1
                endif
        endif
endif

ifeq ($(mixed-targets),1)
# =================================================== ==========================
# 我们被称为混合目标(*配置和构建目标)。
# 一一处理。

PHONY += $(MAKECMDGOALS) __build_one_by_one

$(filter-out __build_one_by_one, $(MAKECMDGOALS)): __build_one_by_one
    @:

__build_one_by_one:
    $(Q)set -e; \
    for i in $(MAKECMDGOALS); do \
        $(MAKE) -f $(srctree)/Makefile $$i; \
    done

else
ifeq ($(config-targets),1)
# =================================================== ==========================
# *仅配置目标 - 确保先决条件已更新,然后下降
# 在scripts/kconfig 中创建*config 目标

# 读取架构特定的 Makefile 以根据需要设置 KBUILD_DEFCONFIG。
# KBUILD_DEFCONFIG 可能会指出替代的默认配置
# 用于“make defconfig”
include arch/$(SRCARCH)/Makefile
export KBUILD_DEFCONFIG KBUILD_KCONFIG

config: scripts_basic outputmakefile FORCE
    $(Q)$(MAKE) $(build)=scripts/kconfig $@

%config: scripts_basic outputmakefile FORCE
    $(Q)$(MAKE) $(build)=scripts/kconfig $@

else
# =================================================== ==========================
# 仅构建目标 - 这包括 vmlinux、arch 特定目标、clean
# 目标和其他。一般来说,除 *config 目标之外的所有目标。

ifeq ($(KBUILD_EXTMOD),)
# 脚本中内置的其他帮助程序/
# 仔细列出依赖项,这样我们就不会尝试两次构建脚本
# in parallel
PHONY += scripts
scripts: scripts_basic include/config/auto.conf include/config/tristate.conf \
     asm-generic
    $(Q)$(MAKE) $(build)=$(@)

# 我们将链接到需要访问的 vmlinux/子目录的对象
init-y      := init/
drivers-y   := drivers/ sound/ firmware/
net-y       := net/
libs-y      := lib/
core-y      := usr/
endif # KBUILD_EXTMOD

ifeq ($(dot-config),1)
# 读入配置
-include include/config/auto.conf

ifeq ($(KBUILD_EXTMOD),)
# 读取所有 Kconfig* 文件的依赖关系,确保运行
# oldconfig 如果检测到更改。
-include include/config/auto.conf.cmd

# 为了避免出现任何隐式规则,请定义一个空命令
$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;

# 如果 .config 比 include/config/auto.conf 新,有人修改了
# 使用它并忘记运行 make oldconfig。
# 如果 auto.conf.cmd 丢失,那么我们可能位于一棵清理过的树中,所以
# 我们执行配置步骤以确保捕获更新的 Kconfig 文件
include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
    $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
else
# 外部模块需要 include/ generated/autoconf.h 和 include/config/auto.conf
# 但不在乎它们是否是最新的。使用auto.conf触发测试
PHONY += include/config/auto.conf

include/config/auto.conf:
    $(Q)test -e include/generated/autoconf.h -a -e $@ || (      \
    echo >&2;                           \
    echo >&2 "  ERROR: Kernel configuration is invalid.";       \
    echo >&2 "         include/generated/autoconf.h or $@ are missing.";\
    echo >&2 "         Run 'make oldconfig && make prepare' on kernel src to fix it.";  \
    echo >&2 ;                          \
    /bin/false)

endif # KBUILD_EXTMOD

else
# 需要虚拟目标,因为用作先决条件
include/config/auto.conf: ;
endif # $(dot-config)

# 当没有给出目标时,all: 目标是默认的
# command line.
# 这允许用户仅发出“make”来构建包括模块的内核
# 默认为 vmlinux,但 arch makefile 通常会添加更多目标
all: vmlinux

include arch/$(SRCARCH)/Makefile

KBUILD_CFLAGS   += $(call cc-option,-fno-delete-null-pointer-checks,)

ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
KBUILD_CFLAGS   += -Os $(call cc-disable-warning,maybe-uninitialized,)
else
KBUILD_CFLAGS   += -O2
endif

# 告诉 gcc 不要用非条件加载替换条件加载
KBUILD_CFLAGS   += $(call cc-option,--param=allow-store-data-races=0)

ifdef CONFIG_READABLE_ASM
# 禁用使汇编程序列表难以阅读的优化。
# reorder 块重新排序函数中的控件
# ipa clone 创建专门的克隆函数
# 部分内联仅内联部分函数
KBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
                 $(call cc-option,-fno-ipa-cp-clone,) \
                 $(call cc-option,-fno-partial-inlining)
endif

ifneq ($(CONFIG_FRAME_WARN),0)
KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
endif

# 处理堆栈保护器模式。
#
# 由于 kbuild 可能会执行两遍(首先使用旧的
# .config 值,然后使用更新的 .config 值),我们不能出错
# 如果所需的编译器选项不受支持。如果我们出错了,kbuild
# 永远无法到达第二遍并真正注意到我们改变了
# 支持的选项。
#
# 此外,我们不想回退和/或默默地更改哪个编译器
# 将使用标志,因为这会导致生成具有不同的内核
# 安全功能特性取决于所使用的编译器。 (“但是我
# 选择了 CC_STACKPROTECTOR_STRONG!为什么它用 _REGULAR 构建?!”)
#
# 中间立场是在这里警告,以便失败的选项是显而易见的,但是
# 让构建因错误的编译器标志而失败,这样我们就无法生成
# 当配置和编译器不匹配时的内核。
#
ifdef CONFIG_CC_STACKPROTECTOR_REGULAR
  stackp-flag := -fstack-protector
  ifeq ($(call cc-option, $(stackp-flag)),)
    $(warning Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: \
             -fstack-protector not supported by compiler)
  endif
else
ifdef CONFIG_CC_STACKPROTECTOR_STRONG
  stackp-flag := -fstack-protector-strong
  ifeq ($(call cc-option, $(stackp-flag)),)
    $(warning Cannot use CONFIG_CC_STACKPROTECTOR_STRONG: \
          -fstack-protector-strong not supported by compiler)
  endif
else
# 强制关闭默认启用堆栈保护器的发行版编译器。
  stackp-flag := $(call cc-option, -fno-stack-protector)
endif
endif
KBUILD_CFLAGS += $(stackp-flag)

ifeq ($(COMPILER),clang)
KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
KBUILD_CPPFLAGS += $(call cc-option,-Wno-unknown-warning-option,)
KBUILD_CFLAGS += $(call cc-disable-warning, unused-variable)
KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
KBUILD_CFLAGS += $(call cc-disable-warning, gnu)
# Quiet clang 警告:无符号表达式 < 0 的比较始终为 false
KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
# CLANG 使用 _MergedGlobals 作为优化,但这会破坏 modpost,因为
# 引用的来源将是 _MergedGlobals,而不是列入白名单的名称。
# 参见 modpost 模式 2
KBUILD_CFLAGS += $(call cc-option, -mno-global-merge,)
KBUILD_CFLAGS += $(call cc-option, -fcatch-undefined-behavior)
else

# 这个警告在常规构建中产生了太多噪音。
# 使用 make W=1 启用此警告(请参阅scripts/Makefile.build)
KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
endif

ifdef CONFIG_FRAME_POINTER
KBUILD_CFLAGS   += -fno-omit-frame-pointer -fno-optimize-sibling-calls
else
# 某些目标(例如带有 Thumb2 的 ARM)无法使用框架构建
# 指针。对于这些,我们不会自动拥有 FUNCTION_TRACER
# 选择 FRAME_POINTER。但是,FUNCTION_TRACER 添加了 -pg,这是
# 与当前 GCC 的 -fomit-frame-pointer 不兼容,所以我们不使用
# -fomit-frame-pointer 与 FUNCTION_TRACER。
ifndef CONFIG_FUNCTION_TRACER
KBUILD_CFLAGS   += -fomit-frame-pointer
endif
endif

KBUILD_CFLAGS   += $(call cc-option, -fno-var-tracking-assignments)

ifdef CONFIG_DEBUG_INFO
ifdef CONFIG_DEBUG_INFO_SPLIT
KBUILD_CFLAGS   += $(call cc-option, -gsplit-dwarf, -g)
else
KBUILD_CFLAGS   += -g
endif
KBUILD_AFLAGS   += -Wa,-gdwarf-2
endif
ifdef CONFIG_DEBUG_INFO_DWARF4
KBUILD_CFLAGS   += $(call cc-option, -gdwarf-4,)
endif

ifdef CONFIG_DEBUG_INFO_REDUCED
KBUILD_CFLAGS   += $(call cc-option, -femit-struct-debug-baseonly) \
           $(call cc-option,-fno-var-tracking)
endif

ifdef CONFIG_FUNCTION_TRACER
ifndef CC_FLAGS_FTRACE
CC_FLAGS_FTRACE := -pg
endif
export CC_FLAGS_FTRACE
ifdef CONFIG_HAVE_FENTRY
CC_USING_FENTRY := $(call cc-option, -mfentry -DCC_USING_FENTRY)
endif
KBUILD_CFLAGS   += $(CC_FLAGS_FTRACE) $(CC_USING_FENTRY)
KBUILD_AFLAGS   += $(CC_USING_FENTRY)
ifdef CONFIG_DYNAMIC_FTRACE
    ifdef CONFIG_HAVE_C_RECORDMCOUNT
        BUILD_C_RECORDMCOUNT := y
        export BUILD_C_RECORDMCOUNT
    endif
endif
endif

# 我们用更少的内联触发额外的不匹配
ifdef CONFIG_DEBUG_SECTION_MISMATCH
KBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once)
endif

# arch Makefile 可能会覆盖 CC,因此在包含 arch Makefile 后保留它
NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
CHECKFLAGS     += $(NOSTDINC_FLAGS)

# 在语句后警告 C99 声明
KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)

# 在 gcc 4.0 中禁用指针有符号/无符号警告
KBUILD_CFLAGS += $(call cc-disable-warning, pointer-sign)

# 禁用对有符号/指针无效的“无法换行”优化
KBUILD_CFLAGS   += $(call cc-option,-fno-strict-overflow)

# 保存堆栈(如果可用)
KBUILD_CFLAGS   += $(call cc-option,-fconserve-stack)

# 不允许出现类似“EXPORT_GPL(foo);”的错误缺少标头
KBUILD_CFLAGS   += $(call cc-option,-Werror=implicit-int)

# 要求函数在原型中有参数,而不是空 'int foo()'
KBUILD_CFLAGS   += $(call cc-option,-Werror=strict-prototypes)

# 禁止日期/时间宏,这会使构建变得不确定
KBUILD_CFLAGS   += $(call cc-option,-Werror=date-time)

# 如果可用的话,使用 AR 的确定性模式
KBUILD_ARFLAGS := $(call ar-option,D)

# 检查“asm goto”
ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y)
    KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO
    KBUILD_AFLAGS += -DCC_HAVE_ASM_GOTO
endif

include scripts/Makefile.kasan
include scripts/Makefile.extrawarn

# 添加任何拱形覆盖和用户提供的 CPPFLAGS、AFLAGS 和 CFLAGS 作为
# 最后的作业
KBUILD_CPPFLAGS += $(ARCH_CPPFLAGS) $(KCPPFLAGS)
KBUILD_AFLAGS   += $(ARCH_AFLAGS)   $(KAFLAGS)
KBUILD_CFLAGS   += $(ARCH_CFLAGS)   $(KCFLAGS)

# 如果可用,请使用 --build-id。
LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\
                  $(call cc-ldoption, -Wl$(comma)--build-id,))
KBUILD_LDFLAGS_MODULE += $(LDFLAGS_BUILD_ID)
LDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID)

ifeq ($(CONFIG_STRIP_ASM_SYMS),y)
LDFLAGS_vmlinux += $(call ld-option, -X,)
endif

# 当没有给出特定目标时要构建的默认内核映像。
# KBUILD_IMAGE 可能会在命令行上被否决,或者
# 在环境中设置
# arch/$(ARCH)/Makefile 中的任何分配也优先于
# 这个默认值
export KBUILD_IMAGE ?= vmlinux

#
# INSTALL_PATH 指定放置更新的内核和系统映射的位置
# images. Default is /boot, but you can set it to other values
export  INSTALL_PATH ?= /boot

#
# INSTALL_DTBS_PATH 指定构建根所需的重定位的前缀。
# 与 INSTALL_MOD_PATH 一样,它没有在 Makefile 中定义,但可以作为传递
# 如果需要的话,一个参数。否则默认为内核安装路径
#
export INSTALL_DTBS_PATH ?= $(INSTALL_PATH)/dtbs/$(KERNELRELEASE)

#
# INSTALL_MOD_PATH 为模块目录指定 MODLIB 的前缀
# 构建根所需的重定位。这在中没有定义
# makefile 但如果需要的话可以将参数传递给 make。
#

MODLIB  = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
export MODLIB

#
# INSTALL_MOD_STRIP,如果定义的话,将导致模块
# 安装后将其删除。如果 INSTALL_MOD_STRIP 为“1”,则
# 将使用默认选项 --strip-debug。否则,
# INSTALL_MOD_STRIP 值将用作 strip 命令的选项。

ifdef INSTALL_MOD_STRIP
ifeq ($(INSTALL_MOD_STRIP),1)
mod_strip_cmd = $(STRIP) --strip-debug
else
mod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
endif # INSTALL_MOD_STRIP=1
else
mod_strip_cmd = true
endif # INSTALL_MOD_STRIP
export mod_strip_cmd

# CONFIG_MODULE_COMPRESS,如果定义,将导致模块被压缩
# 按照 CONFIG_MODULE_COMPRESS_GZIP 安装后
# 或 CONFIG_MODULE_COMPRESS_XZ。

mod_compress_cmd = true
ifdef CONFIG_MODULE_COMPRESS
  ifdef CONFIG_MODULE_COMPRESS_GZIP
    mod_compress_cmd = gzip -n
  endif # CONFIG_MODULE_COMPRESS_GZIP
  ifdef CONFIG_MODULE_COMPRESS_XZ
    mod_compress_cmd = xz
  endif # CONFIG_MODULE_COMPRESS_XZ
endif # CONFIG_MODULE_COMPRESS
export mod_compress_cmd

# 选择初始ramdisk压缩格式,默认为gzip(1)。
# 这将由 dracut(8) 工具在创建 initramfs 映像时使用。
#
INITRD_COMPRESS-y                  := gzip
INITRD_COMPRESS-$(CONFIG_RD_BZIP2) := bzip2
INITRD_COMPRESS-$(CONFIG_RD_LZMA)  := lzma
INITRD_COMPRESS-$(CONFIG_RD_XZ)    := xz
INITRD_COMPRESS-$(CONFIG_RD_LZO)   := lzo
INITRD_COMPRESS-$(CONFIG_RD_LZ4)   := lz4
# 不要导出 INITRD_COMPRESS,因为我们实际上没有
# 在上面选择一个合理的默认压缩。
# 导出 INITRD_COMPRESS := $(INITRD_COMPRESS-y)

ifdef CONFIG_MODULE_SIG_ALL
MODSECKEY = ./signing_key.priv
MODPUBKEY = ./signing_key.x509
export MODPUBKEY
mod_sign_cmd = perl $(srctree)/scripts/sign-file $(CONFIG_MODULE_SIG_HASH) $(MODSECKEY) $(MODPUBKEY)
else
mod_sign_cmd = true
endif
export mod_sign_cmd


ifeq ($(KBUILD_EXTMOD),)
core-y      += kernel/ mm/ fs/ ipc/ security/ crypto/ block/

vmlinux-dirs    := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
             $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
             $(net-y) $(net-m) $(libs-y) $(libs-m)))

vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
             $(init-) $(core-) $(drivers-) $(net-) $(libs-))))

init-y      := $(patsubst %/, %/built-in.o, $(init-y))
core-y      := $(patsubst %/, %/built-in.o, $(core-y))
drivers-y   := $(patsubst %/, %/built-in.o, $(drivers-y))
net-y       := $(patsubst %/, %/built-in.o, $(net-y))
libs-y1     := $(patsubst %/, %/lib.a, $(libs-y))
libs-y2     := $(patsubst %/, %/built-in.o, $(libs-y))
libs-y      := $(libs-y1) $(libs-y2)

# 外部可见符号(由 link-vmlinux.sh 使用)
export KBUILD_VMLINUX_INIT := $(head-y) $(init-y)
export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y) $(drivers-y) $(net-y)
export KBUILD_LDS          := arch/$(SRCARCH)/kernel/vmlinux.lds
export LDFLAGS_vmlinux
# 由脚本/pacmage/Makefile 使用
export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools virt)

vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN)

# vmlinux的最终链接
      cmd_link-vmlinux = $(CONFIG_SHELL) $< $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux)
quiet_cmd_link-vmlinux = LINK    $@

# 包含我们想要的目标
# 如果内核构建的其余部分进展顺利则执行。
vmlinux: scripts/link-vmlinux.sh $(vmlinux-deps) FORCE
ifdef CONFIG_HEADERS_CHECK
    $(Q)$(MAKE) -f $(srctree)/Makefile headers_check
endif
ifdef CONFIG_SAMPLES
    $(Q)$(MAKE) $(build)=samples
endif
ifdef CONFIG_BUILD_DOCSRC
    $(Q)$(MAKE) $(build)=Documentation
endif
ifdef CONFIG_GDB_SCRIPTS
    $(Q)ln -fsn `cd $(srctree) && /bin/pwd`/scripts/gdb/vmlinux-gdb.py
endif
    +$(call if_changed,link-vmlinux)

# 实际对象是下降时生成的,
# 确保没有隐式规则生效
$(sort $(vmlinux-deps)): $(vmlinux-dirs) ;

# 处理降序进入 $(vmlinux-dirs) 中列出的子目录
# 预设区域设置变量以加快构建过程。限制区域设置
# 对此点进行调整以避免运行时出现错误的语言设置
# 制作菜单配置等。
# 错误消息仍然以原始语言显示

PHONY += $(vmlinux-dirs)
$(vmlinux-dirs): prepare scripts
    $(Q)$(MAKE) $(build)=$@

define filechk_kernel.release
    echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
endef

# 将(新)KERNELRELEASE 字符串存储在 include/config/kernel.release 中
include/config/kernel.release: include/config/auto.conf FORCE
    $(call filechk,kernel.release)


# 在递归开始构建内核之前我们需要做的事情
# 或者模块在“准备”中列出。
# 使用多层次方法。在prepareN-1之前处理prepareN。
# archprepare 用于 arch Makefiles 并在处理 asm 符号链接时,
# version.h 和 script_basic 已处理/创建。

# 按依赖顺序列出
PHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3

#prepare3 用于检查我们是否在单独的输出目录中构建,
# 如果是这样的话:
# 1) 检查内核 src $(srctree) 中是否未执行 make
prepare3: include/config/kernel.release
ifneq ($(KBUILD_SRC),)
    @$(kecho) '  Using $(srctree) as source for kernel'
    $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
        echo >&2 "  $(srctree) is not clean, please run 'make mrproper'"; \
        echo >&2 "  in the '$(srctree)' directory.";\
        /bin/false; \
    fi;
endif

# 如果使用单独的输出目录,prepare2 将创建一个 makefile
prepare2: prepare3 outputmakefile asm-generic

prepare1: prepare2 $(version_h) include/generated/utsrelease.h \
                   include/config/auto.conf
    $(cmd_crmodverdir)

archprepare: archheaders archscripts prepare1 scripts_basic

prepare0: archprepare FORCE
    $(Q)$(MAKE) $(build)=.

# 一切准备工作..
prepare: prepare0

# 生成一些文件
#------------------------------------------------- --------------------------

# KERNELRELEASE 可以从几个不同的地方进行更改,即 version.h
# 需要更新,因此在所有版本上强制执行此检查

uts_len := 64
define filechk_utsrelease.h
    if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
      echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2;    \
      exit 1;                                                         \
    fi;                                                               \
    (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";)
endef

define filechk_version.h
    (echo \#define LINUX_VERSION_CODE $(shell                         \
    expr $(VERSION) \* 65536 + 0$(PATCHLEVEL) \* 256 + 0$(SUBLEVEL)); \
    echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
endef

$(version_h): $(srctree)/Makefile FORCE
    $(call filechk,version.h)
    $(Q)rm -f $(old_version_h)

include/generated/utsrelease.h: include/config/kernel.release FORCE
    $(call filechk,utsrelease.h)

PHONY += headerdep
headerdep:
    $(Q)find $(srctree)/include/ -name '*.h' | xargs --max-args 1 \
    $(srctree)/scripts/headerdep.pl -I$(srctree)/include

#------------------------------------------------- --------------------------
# 固件安装
INSTALL_FW_PATH=$(INSTALL_MOD_PATH)/lib/firmware
export INSTALL_FW_PATH

PHONY += firmware_install
firmware_install: FORCE
    @mkdir -p $(objtree)/firmware
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_install

#------------------------------------------------- --------------------------
# 内核头文件

#安装标头的默认位置
export INSTALL_HDR_PATH = $(objtree)/usr

# 如果我们执行所有 arch 进程,请将 dst 设置为 asm-$(hdr-arch)
hdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm)

PHONY += archheaders
archheaders:

PHONY += archscripts
archscripts:

PHONY += __headers
__headers: $(version_h) scripts_basic asm-generic archheaders archscripts FORCE
    $(Q)$(MAKE) $(build)=scripts build_unifdef

PHONY += headers_install_all
headers_install_all:
    $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install

PHONY += headers_install
headers_install: __headers
    $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/uapi/asm/Kbuild),, \
      $(error Headers not exportable for the $(SRCARCH) architecture))
    $(Q)$(MAKE) $(hdr-inst)=include/uapi
    $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst)

PHONY += headers_check_all
headers_check_all: headers_install_all
    $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check

PHONY += headers_check
headers_check: headers_install
    $(Q)$(MAKE) $(hdr-inst)=include/uapi HDRCHECK=1
    $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) HDRCHECK=1

#------------------------------------------------- --------------------------
# 内核自检

PHONY += kselftest
kselftest:
    $(Q)$(MAKE) -C tools/testing/selftests run_tests

#------------------------------------------------- --------------------------
# 模块

ifdef CONFIG_MODULES

# 默认情况下,也构建模块

all: modules

# 构建模块
#
# 一个模块可以在 obj-m 中多次列出,从而导致
# module.order 文件中出现重复行。那些被删除了
# 使用 awk 连接到最终文件。

PHONY += modules
modules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) modules.builtin
    $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order
    @$(kecho) '  Building modules, stage 2.';
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild

modules.builtin: $(vmlinux-dirs:%=%/modules.builtin)
    $(Q)$(AWK) '!x[$$0]++' $^ > $(objtree)/modules.builtin

%/modules.builtin: include/config/auto.conf
    $(Q)$(MAKE) $(modbuiltin)=$*


# 准备构建外部模块的目标
PHONY += modules_prepare
modules_prepare: prepare scripts

# 目标安装模块
PHONY += modules_install
modules_install: _modinst_ _modinst_post

PHONY += _modinst_
_modinst_:
    @rm -rf $(MODLIB)/kernel
    @rm -f $(MODLIB)/source
    @mkdir -p $(MODLIB)/kernel
    @ln -s `cd $(srctree) && /bin/pwd` $(MODLIB)/source
    @if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
        rm -f $(MODLIB)/build ; \
        ln -s $(CURDIR) $(MODLIB)/build ; \
    fi
    @cp -f $(objtree)/modules.order $(MODLIB)/
    @cp -f $(objtree)/modules.builtin $(MODLIB)/
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst

# 这个depmod只是为了方便给出初始值
# 甚至在/以读写方式挂载之前启动modules.dep。但是,那
# 启动脚本 depmod 是主版本。
PHONY += _modinst_post
_modinst_post: _modinst_
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modinst
    $(call cmd,depmod)

ifeq ($(CONFIG_MODULE_SIG), y)
PHONY += modules_sign
modules_sign:
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modsign
endif

else # CONFIG_MODULES

# 模块未配置
#------------------------------------------------- --------------------------

modules modules_install: FORCE
    @echo >&2
    @echo >&2 "The present kernel configuration has modules disabled."
    @echo >&2 "Type 'make config' and enable loadable module support."
    @echo >&2 "Then build a kernel with module support enabled."
    @echo >&2
    @exit 1

endif # CONFIG_MODULES

###
# 清洁分三个级别进行。
# make clean 删除大部分生成的文件
# 留出足够的空间来构建外部模块
# make mrproper 删除当前配置以及所有生成的文件
# make distclean 删除编辑器备份文件、补丁剩余文件等

# 使用“make clean”删除的目录和文件
CLEAN_DIRS  += $(MODVERDIR)

# 使用“make mrproper”删除的目录和文件
MRPROPER_DIRS  += include/config usr/include include/generated          \
          arch/*/include/generated .tmp_objdiff
MRPROPER_FILES += .config .config.old .version .old_version \
          Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
          signing_key.priv signing_key.x509 x509.genkey     \
          extra_certificates signing_key.x509.keyid     \
          signing_key.x509.signer vmlinux-gdb.py

# clean - 删除大部分,但留下足够的空间来构建外部模块
#
clean: rm-dirs  := $(CLEAN_DIRS)
clean: rm-files := $(CLEAN_FILES)
clean-dirs      := $(addprefix _clean_, . $(vmlinux-alldirs) Documentation samples)

PHONY += $(clean-dirs) clean archclean vmlinuxclean
$(clean-dirs):
    $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)

vmlinuxclean:
    $(Q)$(CONFIG_SHELL) $(srctree)/scripts/link-vmlinux.sh clean

clean: archclean vmlinuxclean

# mrproper - 删除所有生成的文件,包括 .config
#
mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
mrproper-dirs      := $(addprefix _mrproper_,Documentation/DocBook scripts)

PHONY += $(mrproper-dirs) mrproper archmrproper
$(mrproper-dirs):
    $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)

mrproper: clean archmrproper $(mrproper-dirs)
    $(call cmd,rmdirs)
    $(call cmd,rmfiles)

# 清理
#
PHONY += distclean

distclean: mrproper
    @find $(srctree) $(RCS_FIND_IGNORE) \
        \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
        -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
        -o -name '.*.rej' -o -name '*%'  -o -name 'core' \) \
        -type f -print | xargs rm -f


# 将内核打包成各种格式
#------------------------------------------------- --------------------------
# 保留 rpm 目标以实现向后兼容性
package-dir := scripts/package

%src-pkg: FORCE
    $(Q)$(MAKE) $(build)=$(package-dir) $@
%pkg: include/config/kernel.release FORCE
    $(Q)$(MAKE) $(build)=$(package-dir) $@
rpm: include/config/kernel.release FORCE
    $(Q)$(MAKE) $(build)=$(package-dir) $@


# 使用的典型目标的简要文档
#------------------------------------------------- --------------------------

boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
boards := $(sort $(notdir $(boards)))
board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
board-dirs := $(sort $(notdir $(board-dirs:/=)))

help:
    @echo  'Cleaning targets:'
    @echo  '  clean       - Remove most generated files but keep the config and'
    @echo  '                    enough build support to build external modules'
    @echo  '  mrproper    - Remove all generated files + config + various backup files'
    @echo  '  distclean   - mrproper + remove editor backup and patch files'
    @echo  ''
    @echo  'Configuration targets:'
    @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
    @echo  ''
    @echo  'Other generic targets:'
    @echo  '  all         - Build all targets marked with [*]'
    @echo  '* vmlinux     - Build the bare kernel'
    @echo  '* modules     - Build all modules'
    @echo  '  modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
    @echo  '  firmware_install- Install all firmware to INSTALL_FW_PATH'
    @echo  '                    (default: $$(INSTALL_MOD_PATH)/lib/firmware)'
    @echo  '  dir/            - Build all files in dir and below'
    @echo  '  dir/file.[oisS] - Build specified target only'
    @echo  '  dir/file.lst    - Build specified mixed source/assembly target only'
    @echo  '                    (requires a recent binutils and recent build (System.map))'
    @echo  '  dir/file.ko     - Build module including final link'
    @echo  '  modules_prepare - Set up for building external modules'
    @echo  '  tags/TAGS   - Generate tags file for editors'
    @echo  '  cscope      - Generate cscope index'
    @echo  '  gtags           - Generate GNU GLOBAL index'
    @echo  '  kernelrelease   - Output the release version string (use with make -s)'
    @echo  '  kernelversion   - Output the version stored in Makefile (use with make -s)'
    @echo  '  image_name      - Output the image name (use with make -s)'
    @echo  '  headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
     echo  '                    (default: $(INSTALL_HDR_PATH))'; \
     echo  ''
    @echo  'Static analysers'
    @echo  '  checkstack      - Generate a list of stack hogs'
    @echo  '  namespacecheck  - Name space analysis on compiled kernel'
    @echo  '  versioncheck    - Sanity check on version.h usage'
    @echo  '  includecheck    - Check for duplicate included header files'
    @echo  '  export_report   - List the usages of all exported symbols'
    @echo  '  headers_check   - Sanity check on exported headers'
    @echo  '  headerdep       - Detect inclusion cycles in headers'
    @$(MAKE) -f $(srctree)/scripts/Makefile.help checker-help
    @echo  ''
    @echo  'Kernel selftest'
    @echo  '  kselftest       - Build and run kernel selftest (run as root)'
    @echo  '                    Build, install, and boot kernel before'
    @echo  '                    running kselftest on it'
    @echo  ''
    @echo  'Kernel packaging:'
    @$(MAKE) $(build)=$(package-dir) help
    @echo  ''
    @echo  'Documentation targets:'
    @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
    @echo  ''
    @echo  'Architecture specific targets ($(SRCARCH)):'
    @$(if $(archhelp),$(archhelp),\
        echo '  No architecture specific help defined for $(SRCARCH)')
    @echo  ''
    @$(if $(boards), \
        $(foreach b, $(boards), \
        printf "  %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
        echo '')
    @$(if $(board-dirs), \
        $(foreach b, $(board-dirs), \
        printf "  %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
        printf "  %-16s - Show all of the above\\n" help-boards; \
        echo '')

    @echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
    @echo  '  make V=2   [targets] 2 => give reason for rebuild of target'
    @echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
    @echo  '  make C=1   [targets] Check all c source with $$CHECK (sparse by default)'
    @echo  '  make C=2   [targets] Force check of all c source with $$CHECK'
    @echo  '  make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
    @echo  '  make W=n   [targets] Enable extra gcc checks, n=1,2,3 where'
    @echo  '        1: warnings which may be relevant and do not occur too often'
    @echo  '        2: warnings which occur quite often but may still be relevant'
    @echo  '        3: more obscure warnings, can most likely be ignored'
    @echo  '        Multiple levels can be combined with W=12 or W=123'
    @echo  ''
    @echo  'Execute "make" or "make all" to build all targets marked with [*] '
    @echo  'For further info see the ./README file'


help-board-dirs := $(addprefix help-,$(board-dirs))

help-boards: $(help-board-dirs)

boards-per-dir = $(sort $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)))

$(help-board-dirs): help-%:
    @echo  'Architecture specific targets ($(SRCARCH) $*):'
    @$(if $(boards-per-dir), \
        $(foreach b, $(boards-per-dir), \
        printf "  %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
        echo '')


# 文档目标
#------------------------------------------------- --------------------------
%docs: scripts_basic FORCE
    $(Q)$(MAKE) $(build)=scripts build_docproc
    $(Q)$(MAKE) $(build)=Documentation/DocBook $@

else # KBUILD_EXTMOD

###
# 外部模块支持。
# 构建外部模块时,会考虑用作基础的内核
# 只读,并且不进行一致性检查
# 系统没有使用基础内核。如果需要更新
# 在基础内核中普通make命令(不带M=...)必须
# be used.
#
# 以下是构建外部时唯一有效的目标
# 模块。
# make M=dir clean 删除所有自动生成的文件
# make M=dir Modules 使所有模块位于指定目录中
# make M=dir    与 'make M=dir 模块' 相同
# 使 M=dir 模块安装
# 安装模块目录中内置的模块
# 假设安装目录已经创建

# 我们一直在构建模块
KBUILD_MODULES := 1
PHONY += crmodverdir
crmodverdir:
    $(cmd_crmodverdir)

PHONY += $(objtree)/Module.symvers
$(objtree)/Module.symvers:
    @test -e $(objtree)/Module.symvers || ( \
    echo; \
    echo "  WARNING: Symbol version dump $(objtree)/Module.symvers"; \
    echo "           is missing; modules will have no dependencies and modversions."; \
    echo )

module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
PHONY += $(module-dirs) modules
$(module-dirs): crmodverdir $(objtree)/Module.symvers
    $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)

modules: $(module-dirs)
    @$(kecho) '  Building modules, stage 2.';
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost

PHONY += modules_install
modules_install: _emodinst_ _emodinst_post

install-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra)
PHONY += _emodinst_
_emodinst_:
    $(Q)mkdir -p $(MODLIB)/$(install-dir)
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst

PHONY += _emodinst_post
_emodinst_post: _emodinst_
    $(call cmd,depmod)

clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))

PHONY += $(clean-dirs) clean
$(clean-dirs):
    $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)

clean:  rm-dirs := $(MODVERDIR)
clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers

help:
    @echo  '  Building external modules.'
    @echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
    @echo  ''
    @echo  '  modules         - default target, build the module(s)'
    @echo  '  modules_install - install the module'
    @echo  '  clean           - remove generated files in module directory only'
    @echo  ''

# 傻瓜...
PHONY += prepare scripts
prepare: ;
scripts: ;
endif # KBUILD_EXTMOD

clean: $(clean-dirs)
    $(call cmd,rmdirs)
    $(call cmd,rmfiles)
    @find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
        \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
        -o -name '*.ko.*' \
        -o -name '*.dwo'  \
        -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
        -o -name '*.symtypes' -o -name 'modules.order' \
        -o -name modules.builtin -o -name '.tmp_*.o.*' \
        -o -name '*.gcno' \) -type f -print | xargs rm -f

# 为编辑器生成标签
#------------------------------------------------- --------------------------
quiet_cmd_tags = GEN     $@
      cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@

tags TAGS cscope gtags: FORCE
    $(call cmd,tags)

# 检查各种内容一致性的脚本
#------------------------------------------------- --------------------------

PHONY += includecheck versioncheck coccicheck namespacecheck export_report

includecheck:
    find $(srctree)/* $(RCS_FIND_IGNORE) \
        -name '*.[hcS]' -type f -print | sort \
        | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl

versioncheck:
    find $(srctree)/* $(RCS_FIND_IGNORE) \
        -name '*.[hcS]' -type f -print | sort \
        | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl

coccicheck:
    $(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@

namespacecheck:
    $(PERL) $(srctree)/scripts/namespace.pl

export_report:
    $(PERL) $(srctree)/scripts/export_report.pl

endif #ifeq ($(config-targets),1)
endif #ifeq ($(mixed-targets),1)

PHONY += checkstack kernelrelease kernelversion image_name

# 这里 UML 需要一些特殊处理。它想使用主机
# 工具链,因此需要将 $(SUBARCH) 传递给 checkstack.pl。每个人
# else 想要 $(ARCH),包括进行交叉构建的人,这意味着
# $(SUBARCH) 在这里不起作用。
ifeq ($(ARCH), um)
CHECKSTACK_ARCH := $(SUBARCH)
else
CHECKSTACK_ARCH := $(ARCH)
endif
checkstack:
    $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
    $(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)

kernelrelease:
    @echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"

kernelversion:
    @echo $(KERNELVERSION)

image_name:
    @echo $(KBUILD_IMAGE)

# 在执行 submake 之前清除一堆变量
tools/: FORCE
    $(Q)mkdir -p $(objtree)/tools
    $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(filter --j% -j,$(MAKEFLAGS))" O=$(objtree) subdir=tools -C $(src)/tools/

tools/%: FORCE
    $(Q)mkdir -p $(objtree)/tools
    $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(filter --j% -j,$(MAKEFLAGS))" O=$(objtree) subdir=tools -C $(src)/tools/ $*

# 单一目标
#------------------------------------------------- --------------------------
# 单个目标兼容:
# - 使用混合源和输出构建
# - 使用单独的输出目录构建'make O=...'
# - 外部模块
#
# target-dir => 存储输出文件的位置
# build-dir => 内核源代码树中要使用的目录

ifeq ($(KBUILD_EXTMOD),)
        build-dir  = $(patsubst %/,%,$(dir $@))
        target-dir = $(dir $@)
else
        zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
        build-dir  = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
        target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
endif

%.s: %.c prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.i: %.c prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.o: %.c prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.lst: %.c prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.s: %.S prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.o: %.S prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
%.symtypes: %.c prepare scripts FORCE
    $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)

# 模块
/: prepare scripts FORCE
    $(cmd_crmodverdir)
    $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
    $(build)=$(build-dir)
# 确保为文档构建最新的标头
Documentation/: headers_install
%/: prepare scripts FORCE
    $(cmd_crmodverdir)
    $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
    $(build)=$(build-dir)
%.ko: prepare scripts FORCE
    $(cmd_crmodverdir)
    $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1)   \
    $(build)=$(build-dir) $(@:.ko=.o)
    $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost

# FIXME 应该进入 make.lib 或其他东西
# =================================================== ==========================

quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
      cmd_rmdirs = rm -rf $(rm-dirs)

quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
      cmd_rmfiles = rm -f $(rm-files)

# 仅当我们有 System.map 并且 depmod 可执行时才运行 depmod
quiet_cmd_depmod = DEPMOD  $(KERNELRELEASE)
      cmd_depmod = $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) \
                   $(KERNELRELEASE) "$(patsubst y,_,$(CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX))"

# 为模块支持文件创建临时目录
# 仅在构建所有模块时才清理它
cmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \
                  $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*)
··
# 读取所有保存的命令行

targets := $(wildcard $(sort $(targets)))
cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))

ifneq ($(cmd_files),)
  $(cmd_files): ;   # Do not try to update included dependency files
  include $(cmd_files)
endif

endif   # skip-makefile

PHONY += FORCE
FORCE:

# 将 .PHONY 变量的内容声明为虚假的。我们保留那个
# 变量中的信息,以便我们可以在 if_changed 和朋友中使用它。
.PHONY: $(PHONY)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容

  • 系统的Makefile文件 本文以某一类linux系统为例,分析该类linux系统中make的流程和原理。打开ma...
    zplodge阅读 6,557评论 0 0
  • buildroot使用介绍 buildroot是Linux平台上一个构建嵌入式Linux系统的框架。整个Build...
    贰爷阅读 3,586评论 0 1
  • 来自陈浩的一片老文,但绝对营养。 示例工程:3 个头文件*.h,和 8 个 C 文件*.c。 初 编译过程,源文件...
    周筱鲁阅读 4,675评论 0 17
  • Makefile 文件描述了整个工程的编译、链接等规则。其中包括:工程中的哪些源文件需要编译以及如何编译、需要创建...
    LeoLongl阅读 1,333评论 0 0
  • 1.通过前面对caffe的配置,基本说明之前安装的软件以及依赖库没有问题,接下来将配置SSD。 git clone...
    几夏经秋阅读 537评论 0 0