Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1339165
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/6] ARM: decompressor: use clean-files instead of extra-y to clean files |
| Date | 2016-02-22 08:40 +0100 |
| Message-ID | <r4Tg5-2j1-9@gated-at.bofh.it> (permalink) |
| References | <r4Tg5-2j1-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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> --- arch/arm/boot/compressed/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 476ef00..f9e8e68 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 -- 1.9.1
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 3/6] ARM: decompressor: use clean-files instead of extra-y to clean files Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-02-22 08:40 +0100
csiph-web