diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-22 07:29:35 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-02-22 11:56:29 -0500 |
commit | b44c72de44173f47e782610e31d4cd1abca3741f (patch) | |
tree | 8c6dbe3cdd027b6f83a1f8f6e6fa652ddd680f69 | |
parent | 4d2b7d4cb4e0786d6435b1df95132033a5b0077a (diff) |
ARM: 8538/1: decompressor: drop unneeded assignments to "targets"
The "targets" exists to specify which files need the corresponding
".*_cmd" files to be included during the build. In other words, it
is used for files that need to detect the change of the command line
by if_changed, if_changed_dep, and if_changed_rule. While, these
files are just copied by "$(call cmd,shipped)". Adding them to the
"targets" is meaningless because $(call cmd,...) never creates
".*_cmd" files. Such files as ".lib1funcs.S.cmd", ".ashldi3.S.cmd"
do not exist in the first place.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/boot/compressed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index af8ff8aeca45..85066e8082c3 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile | |||
@@ -91,8 +91,8 @@ endif | |||
91 | 91 | ||
92 | targets := vmlinux vmlinux.lds \ | 92 | targets := vmlinux vmlinux.lds \ |
93 | piggy.$(suffix_y) piggy.$(suffix_y).o \ | 93 | piggy.$(suffix_y) piggy.$(suffix_y).o \ |
94 | lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S bswapsdi2.o \ | 94 | lib1funcs.o ashldi3.o bswapsdi2.o \ |
95 | bswapsdi2.S font.o font.c head.o misc.o $(OBJS) | 95 | font.o head.o misc.o $(OBJS) |
96 | 96 | ||
97 | # Make sure files are removed during clean | 97 | # Make sure files are removed during clean |
98 | extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \ | 98 | extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \ |