diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-30 09:22:38 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-30 09:22:38 +0000 |
commit | 740b41797d1120258b683ef8c467f83256a360ae (patch) | |
tree | 0a4d808b0a9057c2963773ec08c8ebf649772a8c /tinyxml2 | |
parent | xml out announcement (diff) | |
download | mutator-740b41797d1120258b683ef8c467f83256a360ae.tar.gz mutator-740b41797d1120258b683ef8c467f83256a360ae.zip |
now has a makefile called by the makefile in the root dir
Diffstat (limited to 'tinyxml2')
-rw-r--r-- | tinyxml2/makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tinyxml2/makefile b/tinyxml2/makefile new file mode 100644 index 0000000..6393832 --- /dev/null +++ b/tinyxml2/makefile @@ -0,0 +1,11 @@ +#CXX=g++ +CXX=/home/bloodstalker/llvm/llvm/build/bin/clang++ +CXX_FLAGS=$(shell /home/bloodstalker/llvm/llvm/build/bin/llvm-config --cxxflags) +EXTRA_CXX_FALGS=-I/home/bloodstalker/llvm/llvm/llvm/tools/clang/include -I/home/bloodstalker/llvm/llvm/build/tools/clang/include +CXX_FLAGS+=$(EXTRA_CXX_FALGS) + +.DEFAULT: tinyxml2 + + +tinyxml2.o: tinyxml2.cpp + $(CXX) $(CXX_FLAGS) -c $< -o $@ |