From ebfb0cf8e0d4c5313d67320b2a8ab9bf2c9909fe Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Fri, 23 Dec 2016 00:14:41 +0330 Subject: added the clean rule to the makefile --- tinyxml2/makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tinyxml2') diff --git a/tinyxml2/makefile b/tinyxml2/makefile index 6393832..df6dac6 100644 --- a/tinyxml2/makefile +++ b/tinyxml2/makefile @@ -6,6 +6,10 @@ CXX_FLAGS+=$(EXTRA_CXX_FALGS) .DEFAULT: tinyxml2 +.PHONY: tinyxml2 tinyxml2.o: tinyxml2.cpp $(CXX) $(CXX_FLAGS) -c $< -o $@ + +clean: + rm -f *.o \ No newline at end of file -- cgit v1.2.3