]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: 8538/1: decompressor: drop unneeded assignments to "targets"
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 22 Feb 2016 12:29:35 +0000 (13:29 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Mon, 22 Feb 2016 16:56:29 +0000 (16:56 +0000)
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>
arch/arm/boot/compressed/Makefile

index af8ff8aeca4535ec87792959dc4dbc889c17b6bf..85066e8082c3ff8286dd8be0ace260397e9c79a5 100644 (file)
@@ -91,8 +91,8 @@ endif
 
 targets       := vmlinux vmlinux.lds \
                 piggy.$(suffix_y) piggy.$(suffix_y).o \
-                lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S bswapsdi2.o \
-                bswapsdi2.S font.o font.c head.o misc.o $(OBJS)
+                lib1funcs.o ashldi3.o bswapsdi2.o \
+                font.o head.o misc.o $(OBJS)
 
 # Make sure files are removed during clean
 extra-y       += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \