diff options
-rw-r--r-- | tinyxml2/makefile | 4 |
1 files changed, 4 insertions, 0 deletions
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 |