diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-09-12 15:43:29 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-09-14 21:47:04 +0900 |
commit | 25815cf5ffecfb8b54314ee1b7cf14c78681fbb6 (patch) | |
tree | c09231cb7c336d178aa4750ccbc0ea1dc9eaa2a8 | |
parent | 0d91bf584fe55349193afa96a2f36d288f65b218 (diff) | |
download | linux-25815cf5ffecfb8b54314ee1b7cf14c78681fbb6.tar.bz2 |
kbuild: hide most of targets when running config or mixed targets
When mixed/config targets are being processed, the top Makefile
does not need to parse the rest of targets.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1615,9 +1615,6 @@ namespacecheck: 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 needs a little special treatment here. It wants to use the host @@ -1732,6 +1729,8 @@ ifneq ($(cmd_files),) include $(cmd_files) endif +endif # ifeq ($(config-targets),1) +endif # ifeq ($(mixed-targets),1) endif # skip-makefile PHONY += FORCE |