diff options
author | bloodstalker <thabogre@gmail.com> | 2017-05-12 15:05:24 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-05-12 15:05:24 +0000 |
commit | 941a0b2cf6dda56b74d4587df863ae3fb5235e42 (patch) | |
tree | 54e40a97887991b252b59e9974037e49927d1faf | |
parent | added some more macros (diff) | |
download | mutator-941a0b2cf6dda56b74d4587df863ae3fb5235e42.tar.gz mutator-941a0b2cf6dda56b74d4587df863ae3fb5235e42.zip |
added linenoise into the build
Diffstat (limited to '')
-rw-r--r-- | bruiser/makefile | 8 |
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: |