This patch adds missing \ on clean target. Whithout it, the last line on
this target is not executed.
Signed-off-by: David Cohen <da...@gm...>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 386622d..3618ec0 100644
--- a/Makefile
+++ b/Makefile
@@ -74,7 +74,7 @@ clean:
cleanobjs="$$cleanobjs $$dir*.o"; \
done; \
echo "rm -f $$cleanobjs include/asm build/tinyx.hex build/tinyx.elf build/tinyx.deps"; \
- rm -f include/asm/arch
+ rm -f include/asm/arch \
rm -f $$cleanobjs include/asm build/tinyx.hex build/tinyx.elf build/tinyx.deps;
--
1.5.3.7
|