diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-16 18:55:40 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-16 18:55:40 +0000 |
commit | 96aea40fe1c611ce2bc954bd25163dc62f03c9da (patch) | |
tree | 217e00c7d14da0be804ca763bc8af934e18ecdbc /bruiser/makefile | |
parent | [skip ci] (diff) | |
download | mutator-96aea40fe1c611ce2bc954bd25163dc62f03c9da.tar.gz mutator-96aea40fe1c611ce2bc954bd25163dc62f03c9da.zip |
fixing the new build
Diffstat (limited to '')
-rw-r--r-- | bruiser/makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bruiser/makefile b/bruiser/makefile index 7039a8b..1200b44 100644 --- a/bruiser/makefile +++ b/bruiser/makefile @@ -85,7 +85,7 @@ TBG_OBJLIST_COV_INC_WASM=$(patsubst ./autogen/wasm/ltg/%.c, ./autogen/wasm/ltg/% .PHONY:all clean help ASM SO TAGS CODE_GEN -all:$(TARGET) +all:exe everything:$(TARGET) A ASM SO $(TARGET)-dbg TAGS $(TARGET)-cov @@ -169,7 +169,9 @@ $(LTG_WASM_A): ./autogen/wasm/ltg/wasm.xml %.ocov:%.cpp $(CXX) $(CXX_FLAGS) $(COV_CXX) -c $< -o $@ -$(TARGET): CODE_GEN $(TARGET).o $(FT_WASM_A) $(LTG_WASM_A) ../m0/mutator_aux.o ../tinyxml2/tinyxml2.o linenoise.o CompletionHints.o mutagen.o ORCmutation.o bruiserffi.o asmrewriter.o bruisercapstone.o ramdump.o ffs.o $(LIB_LUA) +exe: CODE_GEN $(TARGET) + +$(TARGET): $(TARGET).o $(FT_WASM_A) $(LTG_WASM_A) ../m0/mutator_aux.o ../tinyxml2/tinyxml2.o linenoise.o CompletionHints.o mutagen.o ORCmutation.o bruiserffi.o asmrewriter.o bruisercapstone.o ramdump.o ffs.o $(LIB_LUA) $(CXX) $^ $(LD_FLAGS) -o $@ # currently broken since it needs a static libpython |