From 975f102de9a008503f567139b788a467e8e07792 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sat, 14 Mar 2009 15:08:41 +0000 Subject: [PATCH] Updated clean command to remove all object files. --- Demo/ARM7_LPC2106_GCC/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Demo/ARM7_LPC2106_GCC/Makefile b/Demo/ARM7_LPC2106_GCC/Makefile index 1992dced4..0ea301cce 100644 --- a/Demo/ARM7_LPC2106_GCC/Makefile +++ b/Demo/ARM7_LPC2106_GCC/Makefile @@ -103,6 +103,7 @@ $(ARM_OBJ) : %.o : %.c $(LDSCRIPT) Makefile $(CC) -c $(CFLAGS) $< -o $@ clean : + rm -rf $(ARM_OBJ) $(THUMB_OBJ) touch Makefile