mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
kbuild: do not add $(bounds-file) and $(offsets-file) to targets
$(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>
This commit is contained in:
committed by
Michal Marek
parent
4218affdf5
commit
8a58e1628c
3
Kbuild
3
Kbuild
@@ -36,7 +36,7 @@ endef
|
|||||||
bounds-file := include/generated/bounds.h
|
bounds-file := include/generated/bounds.h
|
||||||
|
|
||||||
always := $(bounds-file)
|
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
|
# We use internal kbuild rules to avoid the "is up to date" message from make
|
||||||
kernel/bounds.s: kernel/bounds.c FORCE
|
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
|
offsets-file := include/generated/asm-offsets.h
|
||||||
|
|
||||||
always += $(offsets-file)
|
always += $(offsets-file)
|
||||||
targets += $(offsets-file)
|
|
||||||
targets += arch/$(SRCARCH)/kernel/asm-offsets.s
|
targets += arch/$(SRCARCH)/kernel/asm-offsets.s
|
||||||
|
|
||||||
# We use internal kbuild rules to avoid the "is up to date" message from make
|
# We use internal kbuild rules to avoid the "is up to date" message from make
|
||||||
|
Reference in New Issue
Block a user