diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-30 09:20:41 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-30 09:20:41 +0000 |
commit | 2ddb7185fc81becc05c23fea8e72f527c77cf779 (patch) | |
tree | 724f758486694b63d4363b18c91438c09708219e | |
parent | update (diff) | |
download | mutator-2ddb7185fc81becc05c23fea8e72f527c77cf779.tar.gz mutator-2ddb7185fc81becc05c23fea8e72f527c77cf779.zip |
tinyxml2 makefile called by the makefile in the root dir
Diffstat (limited to '')
-rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 $@ |