diff options
author | Cao jin <caoj.fnst@cn.fujitsu.com> | 2017-08-01 22:31:06 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-08-09 11:58:20 -0400 |
commit | 312a3d0918bb7d65862fbbd3e2f2f4630e4d6f56 (patch) | |
tree | 6bba3a4b94ad94a1c8eddd11934e5649a89d5a73 /Makefile | |
parent | cb87481ee89dbd6609e227afbf64900fb4e5c930 (diff) |
kbuild: trivial cleanups on the comments
This is a bunch of trivial fixes and cleanups.
Signed-off-by: Cao jin <caoj.fnst@cn.fujitsu.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -442,7 +442,7 @@ export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ | |||
442 | # =========================================================================== | 442 | # =========================================================================== |
443 | # Rules shared between *config targets and build targets | 443 | # Rules shared between *config targets and build targets |
444 | 444 | ||
445 | # Basic helpers built in scripts/ | 445 | # Basic helpers built in scripts/basic/ |
446 | PHONY += scripts_basic | 446 | PHONY += scripts_basic |
447 | scripts_basic: | 447 | scripts_basic: |
448 | $(Q)$(MAKE) $(build)=scripts/basic | 448 | $(Q)$(MAKE) $(build)=scripts/basic |
@@ -505,7 +505,7 @@ ifeq ($(KBUILD_EXTMOD),) | |||
505 | endif | 505 | endif |
506 | endif | 506 | endif |
507 | endif | 507 | endif |
508 | # install and module_install need also be processed one by one | 508 | # install and modules_install need also be processed one by one |
509 | ifneq ($(filter install,$(MAKECMDGOALS)),) | 509 | ifneq ($(filter install,$(MAKECMDGOALS)),) |
510 | ifneq ($(filter modules_install,$(MAKECMDGOALS)),) | 510 | ifneq ($(filter modules_install,$(MAKECMDGOALS)),) |
511 | mixed-targets := 1 | 511 | mixed-targets := 1 |
@@ -964,7 +964,7 @@ export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y2) $(drivers-y) $(net-y) $(virt- | |||
964 | export KBUILD_VMLINUX_LIBS := $(libs-y1) | 964 | export KBUILD_VMLINUX_LIBS := $(libs-y1) |
965 | export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds | 965 | export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds |
966 | export LDFLAGS_vmlinux | 966 | export LDFLAGS_vmlinux |
967 | # used by scripts/pacmage/Makefile | 967 | # used by scripts/package/Makefile |
968 | export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools) | 968 | export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools) |
969 | 969 | ||
970 | vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) $(KBUILD_VMLINUX_LIBS) | 970 | vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) $(KBUILD_VMLINUX_LIBS) |
@@ -992,8 +992,8 @@ include/generated/autoksyms.h: FORCE | |||
992 | ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink) | 992 | ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink) |
993 | 993 | ||
994 | # Final link of vmlinux with optional arch pass after final link | 994 | # Final link of vmlinux with optional arch pass after final link |
995 | cmd_link-vmlinux = \ | 995 | cmd_link-vmlinux = \ |
996 | $(CONFIG_SHELL) $< $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) ; \ | 996 | $(CONFIG_SHELL) $< $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) ; \ |
997 | $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true) | 997 | $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true) |
998 | 998 | ||
999 | vmlinux: scripts/link-vmlinux.sh vmlinux_prereq $(vmlinux-deps) FORCE | 999 | vmlinux: scripts/link-vmlinux.sh vmlinux_prereq $(vmlinux-deps) FORCE |