diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-18 21:41:57 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-18 21:41:57 +0000 |
commit | 72d44ed611459d1716d4e47ed7b881586bec7abc (patch) | |
tree | e62d94b7e227aaafcada4fea2bed250055b6689c /bruiser/autogen/wasm/ft/makefile | |
parent | a quick fix (diff) | |
download | mutator-72d44ed611459d1716d4e47ed7b881586bec7abc.tar.gz mutator-72d44ed611459d1716d4e47ed7b881586bec7abc.zip |
still WIP
Diffstat (limited to 'bruiser/autogen/wasm/ft/makefile')
-rw-r--r-- | bruiser/autogen/wasm/ft/makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bruiser/autogen/wasm/ft/makefile b/bruiser/autogen/wasm/ft/makefile index be67649..d67c45b 100644 --- a/bruiser/autogen/wasm/ft/makefile +++ b/bruiser/autogen/wasm/ft/makefile @@ -101,6 +101,8 @@ ASM:$(ASM_LIST) SO:$(TARGET).so A:$(TARGET).a +ADBG:$(TARGET).adbg +ACOV:$(TARGET).acov TAGS:tags @@ -118,6 +120,12 @@ $(TARGET).so: $(TARGET).o read.o aggregate.o structs.o $(TARGET).a: $(TARGET).o read.o aggregate.o structs.o ar rcs $(TARGET).a $(TARGET).o read.o aggregate.o structs.o +$(TARGET).adbg: $(TARGET).odbg read.odbg aggregate.odbg structs.odbg + ar rcs $(TARGET).adbg $(TARGET).odbg read.odbg aggregate.odbg structs.odbg + +$(TARGET).acov: $(TARGET).ocov read.ocov aggregate.ocov structs.ocov + ar rcs $(TARGET).acov $(TARGET).ocov read.ocov aggregate.ocov structs.ocov + valgrind: $(TARGET) valgrind --leak-check=yes $(TARGET) @@ -125,7 +133,7 @@ test: $(TARGET) $(TARGET) clean: - rm -f *.o *.dis *.odbg *.ocov *~ $(TARGET) $(TARGET).so $(TARGET)-static $(TARGET)-dbg $(TARGET).a $(TARGET)-cov + rm -f *.o *.dis *.odbg *.ocov *~ $(TARGET) $(TARGET).so $(TARGET)-static $(TARGET)-dbg $(TARGET).a $(TARGET)-cov $(TARGET).adbg $(TARGET).acov deepclean: rm -f *.o *.dis *.odbg *.ocov *~ $(TARGET) $(TARGET).so tags $(TARGET)-static $(TARGET)-dbg $(TARGET).a $(TARGET)-cov |