From d80dd5b880c14698d9a0dfb39ecb4e8ff809975c Mon Sep 17 00:00:00 2001 From: Christopher Hall Date: Fri, 28 Nov 2008 10:16:44 +0000 Subject: [PATCH] qi-clean-makefile-clean.patch Just tidy up the clean rm-s Signed-off-by: Christopher Hall --- qiboot/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/qiboot/Makefile b/qiboot/Makefile index 9c242a3..2ac0e2c 100644 --- a/qiboot/Makefile +++ b/qiboot/Makefile @@ -84,6 +84,10 @@ ${UDFU_IMAGE}:${OBJS} ${MKUDFU} @$(OBJDUMP) -d ${TARGET} >${IMAGE}.dis clean: - @rm -f src/*.o src/*~ src/cpu/*/*.o src/cpu/*/*~ src/drivers/*.o \ - src/drivers/*~ src/fs/*.o src/fs/*~ include/*~ ${IMAGE_DIR}/* + @rm -f *~ src/*.o src/*~ + @rm -f src/cpu/*/*.o src/cpu/*/*~ + @rm -f src/drivers/*.o src/drivers/*~ + @rm -f src/fs/*.o src/fs/*~ + @rm -f include/*~ ${IMAGE_DIR}/* @make clean -C $(TOOLS) +