diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-22 13:31:33 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-02-22 17:56:30 +0100 |
commit | 822ec1b6ead2667c455227a0fc95c07c0515aed2 (patch) | |
tree | 7bb40e7fdc4ac5971f61d8c824c4ea3006efdba5 /arch/arm/boot/compressed | |
parent | ARM: 8539/1: decompressor: drop more unneeded assignments to "targets" (diff) | |
download | linux-822ec1b6ead2667c455227a0fc95c07c0515aed2.tar.xz linux-822ec1b6ead2667c455227a0fc95c07c0515aed2.zip |
ARM: 8540/1: decompressor: use clean-files instead of extra-y to clean files
This code works fine here, but it is tricky to use "extra-y" for
specifying files to be removed during "make clean". Kbuild provides
"clean-files" for this purpose.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed')
-rw-r--r-- | arch/arm/boot/compressed/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 48c9db595ad2..1b3d3e5bbd68 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile @@ -94,8 +94,7 @@ targets := vmlinux vmlinux.lds \ lib1funcs.o ashldi3.o bswapsdi2.o \ head.o $(OBJS) -# Make sure files are removed during clean -extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \ +clean-files += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \ lib1funcs.S ashldi3.S bswapsdi2.S $(libfdt) $(libfdt_hdrs) \ hyp-stub.S |