diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-22 20:44:41 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-22 20:44:41 +0000 |
commit | ebfb0cf8e0d4c5313d67320b2a8ab9bf2c9909fe (patch) | |
tree | 43bedc5c725e952a1980fe15f97dc779bc8ef637 /tinyxml2/makefile | |
parent | minor changes (diff) | |
download | mutator-ebfb0cf8e0d4c5313d67320b2a8ab9bf2c9909fe.tar.gz mutator-ebfb0cf8e0d4c5313d67320b2a8ab9bf2c9909fe.zip |
added the clean rule to the makefile
Diffstat (limited to 'tinyxml2/makefile')
-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 |