added clean rule

svn path=/trunk/; revision=17448
This commit is contained in:
Royce Mitchell III 2005-08-19 21:58:31 +00:00
parent 565a32245f
commit 1ad828873f

View file

@ -31,3 +31,8 @@ $(TARGET): $(OBJS)
.cpp.o: $<
$(CPP) $(CFLAGS) -c $< -o $@
.PHONY: clean
clean:
-@del $(TARGET)
-@del $(OBJS)