projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
021f049
)
kbuild: standalone: simplify clean-files
author
Masahiro Yamada
<yamada.m@jp.panasonic.com>
Thu, 4 Sep 2014 16:56:52 +0000
(
01:56
+0900)
committer
Tom Rini
<trini@ti.com>
Tue, 16 Sep 2014 16:23:59 +0000
(12:23 -0400)
Files added $(extra-) are removed by "make clean".
Besides, wildcard "*.srec *.bin" is simpler.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
examples/standalone/Makefile
patch
|
blob
|
history
diff --git
a/examples/standalone/Makefile
b/examples/standalone/Makefile
index
2dacba2
..
0863a8c
100644
(file)
--- 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)