From: RichardBarry Date: Sat, 14 Mar 2009 15:08:41 +0000 (+0000) Subject: Updated clean command to remove all object files. X-Git-Tag: V5.2.0~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fbe2028bcd83027cff889574f65b2a0c0da04650;p=freertos Updated clean command to remove all object files. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@709 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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