From: Nick Bowler Date: Thu, 8 May 2008 15:01:36 +0000 (-0400) Subject: Add clean target to C tools makefile. X-Git-Url: http://git.draconx.ca/gitweb/fvwmconf.git/commitdiff_plain/2aed3212f06816bfd9a680c66f162ce236cf652a Add clean target to C tools makefile. --- diff --git a/scripts/C/Makefile b/scripts/C/Makefile index 5d61541..8e05569 100644 --- a/scripts/C/Makefile +++ b/scripts/C/Makefile @@ -5,6 +5,8 @@ CC = c89 LD = $(CC) all: xaspect +clean: + rm -f xaspect *.o .c.o: $(CC) -c -o $@ $(CFLAGS) $<