added "tidy" target to clean without removing $(TARGET)

git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@52 8131a0b2-b21c-1c47-bd6a-f003126495bd
This commit is contained in:
joshholtrop 2009-08-19 17:11:06 +00:00
parent 39092d710b
commit 874021f94f

View File

@ -22,4 +22,8 @@ $(TARGET): $(OBJS)
$(CXX) -c -o $@ $(CPPFLAGS) $(CXXFLAGS) $<
clean:
-$(RM) -f *.o *~ *.exe
-$(RM) -f *.o *~ $(TARGET)
.PHONY: tidy
tidy:
-$(RM) -f *.o *~