From 740b41797d1120258b683ef8c467f83256a360ae Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Wed, 30 Nov 2016 12:52:38 +0330 Subject: now has a makefile called by the makefile in the root dir --- tinyxml2/makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tinyxml2/makefile (limited to 'tinyxml2') 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 $@ -- cgit v1.2.3