aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-11-30 09:20:41 +0000
committerbloodstalker <thabogre@gmail.com>2016-11-30 09:20:41 +0000
commit2ddb7185fc81becc05c23fea8e72f527c77cf779 (patch)
tree724f758486694b63d4363b18c91438c09708219e
parentupdate (diff)
downloadmutator-2ddb7185fc81becc05c23fea8e72f527c77cf779.tar.gz
mutator-2ddb7185fc81becc05c23fea8e72f527c77cf779.zip
tinyxml2 makefile called by the makefile in the root dir
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index 0573103..e918f19 100644
--- a/makefile
+++ b/makefile
@@ -7,7 +7,7 @@ CXX_FLAGS=$(shell /home/bloodstalker/llvm/llvm/build/bin/llvm-config --cxxflags)
#CXX_FLAGS=$(shell llvm-config --cxxflags)
EXTRA_CXX_FALGS=-I/home/bloodstalker/llvm/llvm/llvm/tools/clang/include -I/home/bloodstalker/llvm/llvm/build/tools/clang/include
-EXTRA_LD_FLAGS=-v
+EXTRA_LD_FLAGS=-v ./tinyxml2/tinyxml2.o
LD_FLAGS=-Wl,--start-group -lclangAST -lclangAnalysis -lclangBasic\
-lclangDriver -lclangEdit -lclangFrontend -lclangFrontendTool\
@@ -34,6 +34,7 @@ all: $(TARGET) $(TARGET2) $(TARGET0)
.cpp.o:
$(CXX) $(CXX_FLAGS) -c $< -o $@
+ $(MAKE) -C tinyxml2
$(TARGET): $(TARGET).o mutator_aux.o
$(CXX) $^ $(LD_FLAGS) -o $@