aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bruiser/makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
index 2182ce9..d296672 100644
--- a/bruiser/makefile
+++ b/bruiser/makefile
@@ -17,7 +17,13 @@ all: $(BRUISER)
.cpp.o:
$(CXX) $(CXX_FLAGS) -c $< -o $@
-$(BRUISER): $(BRUISER).o ../mutator_aux.o ../tinyxml2/tinyxml2.o
+linenoise.o:
+ $(CC) $(CC_FLAGS) linenoise/linenoise.c -c -o linenoise.o
+
+lua:
+ $(MAKE) -C lua-5.3.4
+
+$(BRUISER): $(BRUISER).o ../mutator_aux.o ../tinyxml2/tinyxml2.o linenoise.o
$(CXX) $^ $(LD_FLAGS) -o $@
clean: