kbuild: do not add $(bounds-file) and $(offsets-file) to targets
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 26 Mar 2015 11:59:52 +0000 (20:59 +0900)
committerMichal Marek <mmarek@suse.cz>
Thu, 2 Apr 2015 14:33:27 +0000 (16:33 +0200)
$(always) is added to targets by scripts/Makefile.build.
Moreover, filechk does not need .*.cmd files.

Adding these two files to targets is redundant.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Kbuild

diff --git a/Kbuild b/Kbuild
index 96d062906c052fbb89d5b79ad8556a7a77772924..6f0d82a9245d897c89a63819e857f474ab93066e 100644 (file)
--- a/Kbuild
+++ b/Kbuild
@@ -36,7 +36,7 @@ endef
 bounds-file := include/generated/bounds.h
 
 always  := $(bounds-file)
-targets := $(bounds-file) kernel/bounds.s
+targets := kernel/bounds.s
 
 # We use internal kbuild rules to avoid the "is up to date" message from make
 kernel/bounds.s: kernel/bounds.c FORCE
@@ -53,7 +53,6 @@ $(obj)/$(bounds-file): kernel/bounds.s FORCE
 offsets-file := include/generated/asm-offsets.h
 
 always  += $(offsets-file)
-targets += $(offsets-file)
 targets += arch/$(SRCARCH)/kernel/asm-offsets.s
 
 # We use internal kbuild rules to avoid the "is up to date" message from make