aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-01-21 19:38:24 +0000
committerbloodstalker <thabogre@gmail.com>2018-01-21 19:38:24 +0000
commit4358675379c25d444791ebb9acbeb76cf8bd5684 (patch)
treefa8b65dbd5f76242edfcdebbd5bb5718bc8782f2 /bruiser/makefile
parentfixing travis (diff)
downloadmutator-4358675379c25d444791ebb9acbeb76cf8bd5684.tar.gz
mutator-4358675379c25d444791ebb9acbeb76cf8bd5684.zip
xobj handling for int types and pointers is done.next is structs,unoins and adding docs. you can try running demo1.lua under lua-scripts for a demo
Diffstat (limited to 'bruiser/makefile')
-rw-r--r--bruiser/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
index 20d0956..c94359a 100644
--- a/bruiser/makefile
+++ b/bruiser/makefile
@@ -32,6 +32,9 @@ depend: .bruiser.d
.cpp.o: depend
$(CXX) $(CXX_FLAGS) -c $< -o $@
+.c.o:
+ $(CC) $(CC_FLAGS) -c $< -o $@
+
linenoise.o:
$(CC) $(CC_FLAGS) linenoise/linenoise.c -c -o linenoise.o
@@ -43,7 +46,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 ORCmutation.o $(LIB_LUA)
+$(BRUISER): $(BRUISER).o ../mutator_aux.o ../tinyxml2/tinyxml2.o linenoise.o CompletionHints.o mutagen.o ORCmutation.o bruiserffi.o $(LIB_LUA)
$(CXX) $^ $(LD_FLAGS) -o $@
clean: