From: Masahiro Yamada Date: Thu, 4 Sep 2014 16:56:52 +0000 (+0900) Subject: kbuild: standalone: simplify clean-files X-Git-Tag: KARO-TXA5-2015-06-26~665 X-Git-Url: https://git.karo-electronics.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=8e714432118c24b568c70a66cc9476f2502b4c4d kbuild: standalone: simplify clean-files Files added $(extra-) are removed by "make clean". Besides, wildcard "*.srec *.bin" is simpler. Signed-off-by: Masahiro Yamada --- diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile index 2dacba2eba..0863a8cda2 100644 --- a/examples/standalone/Makefile +++ b/examples/standalone/Makefile @@ -22,7 +22,7 @@ extra-$(CONFIG_PPC) += sched ELF := $(strip $(extra-y)) extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y)) -clean-files := $(extra-) $(addsuffix .srec,$(extra-)) $(addsuffix .bin,$(extra-)) +clean-files := *.srec *.bin COBJS := $(ELF:=.o)