Skip to content

Commit b44c72d

Browse files
masahir0yRussell King
authored andcommitted
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>
1 parent 4d2b7d4 commit b44c72d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/boot/compressed/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ endif
9191

9292
targets := vmlinux vmlinux.lds \
9393
piggy.$(suffix_y) piggy.$(suffix_y).o \
94-
lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S bswapsdi2.o \
95-
bswapsdi2.S font.o font.c head.o misc.o $(OBJS)
94+
lib1funcs.o ashldi3.o bswapsdi2.o \
95+
font.o head.o misc.o $(OBJS)
9696

9797
# Make sure files are removed during clean
9898
extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \

0 commit comments

Comments
 (0)