aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-06-27 19:17:18 +0000
committerbloodstalker <thabogre@gmail.com>2017-06-27 19:17:18 +0000
commited6e2fdc9d1ecdafebd33b62ebf5dd54a8f1424f (patch)
treed49bbdaa2384fbc429923ddac8cc4303506d1884 /bruiser/makefile
parentupdated (diff)
downloadmutator-ed6e2fdc9d1ecdafebd33b62ebf5dd54a8f1424f.tar.gz
mutator-ed6e2fdc9d1ecdafebd33b62ebf5dd54a8f1424f.zip
added the new source file
Diffstat (limited to 'bruiser/makefile')
-rw-r--r--bruiser/makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
index ee95cb3..136b1c6 100644
--- a/bruiser/makefile
+++ b/bruiser/makefile
@@ -9,6 +9,7 @@ LUA?=JIT
LIB_LUA=./lua-5.3.4/src/liblua.a
LIB_LUA_JIT=./LuaJIT/src/libluajit.a
HEADER_LIST=bruiser.h bruiser-extra.h CompletionHints.h
+#for some reason without ld the build fails on ubuntu trusty on travis
EXTRA_LD_FLAGS+=-ldl
######################################RULES####################################
.DEFAULT: all
@@ -31,7 +32,7 @@ $(LIB_LUA_JIT):
$(MAKE) -C LuaJIT
@echo "building with jit"
-$(BRUISER): $(BRUISER).o ../mutator_aux.o ../tinyxml2/tinyxml2.o linenoise.o CompletionHints.o mutagen.o $(LIB_LUA)
+$(BRUISER): $(BRUISER).o ../mutator_aux.o ../tinyxml2/tinyxml2.o linenoise.o CompletionHints.o mutagen.o ORCmutation.o $(LIB_LUA)
$(CXX) $^ $(LD_FLAGS) -o $@
clean: