diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-16 16:21:56 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-16 16:21:56 +0000 |
commit | 1e4cd58f5a597ea04e28a1a28e0cc1e5d3cb3032 (patch) | |
tree | e46baed46563952a524ac21a5e2e200524037f76 | |
parent | [skip ci] (diff) | |
download | mutator-1e4cd58f5a597ea04e28a1a28e0cc1e5d3cb3032.tar.gz mutator-1e4cd58f5a597ea04e28a1a28e0cc1e5d3cb3032.zip |
[skip ci]
-rw-r--r-- | bruiser/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bruiser/makefile b/bruiser/makefile index fe5e3db..8b23606 100644 --- a/bruiser/makefile +++ b/bruiser/makefile @@ -167,11 +167,11 @@ $(LTG_WASM_A): ./autogen/wasm/ltg/wasm.xml %.ocov:%.cpp $(CXX) $(CXX_FLAGS) $(COV_CXX) -c $< -o $@ -$(TARGET): $(TARGET).o ../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) $(FT_WASM_A) $(LTG_WASM_A) +$(TARGET): $(FT_WASM_A) $(LTG_WASM_A) $(TARGET).o ../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 -$(TARGET)-static: $(TARGET).o ../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) $(FT_WASM_A) $(LTG_WASM_A) +$(TARGET)-static: $(FT_WASM_A) $(LTG_WASM_A) $(TARGET).o ../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) -static -o $@ $(TARGET)-dbg: $(TARGET).odbg ../m0/mutator_aux.odbg ../tinyxml2/tinyxml2.odbg linenoise.odbg CompletionHints.odbg mutagen.o ORCmutation.o bruiserffi.odbg asmrewriter.odbg bruisercapstone.odbg ramdump.odbg ffs.odbg $(LIB_LUA) $(TBG_OBJLIST_DBG_INC) |