From 4358675379c25d444791ebb9acbeb76cf8bd5684 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 21 Jan 2018 23:08:24 +0330 Subject: 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 --- bruiser/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bruiser/makefile') 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: -- cgit v1.2.3