aboutsummaryrefslogtreecommitdiffstats
path: root/tinyxml2/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tinyxml2/makefile')
-rw-r--r--tinyxml2/makefile11
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 $@