diff options
| author | van Hauser <vh@thc.org> | 2022-01-30 20:59:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-30 20:59:24 +0100 |
| commit | 2d9325aed9bde0630162a5efaac33a2a8f5bb252 (patch) | |
| tree | bbb0cf0f8620b71d315dcc449018affd3ea5b33a /custom_mutators/libafl_base/Makefile | |
| parent | 143c9d175e9357ba548413ee7dcee6a8de23f733 (diff) | |
| parent | 53eb5ba2fbfa75e1c008239bf5d54238bfadb148 (diff) | |
| download | afl++-2d9325aed9bde0630162a5efaac33a2a8f5bb252.tar.gz | |
Merge pull request #1319 from AFLplusplus/dev
push to stable
Diffstat (limited to 'custom_mutators/libafl_base/Makefile')
| -rw-r--r-- | custom_mutators/libafl_base/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/custom_mutators/libafl_base/Makefile b/custom_mutators/libafl_base/Makefile new file mode 100644 index 00000000..a1fd6b6c --- /dev/null +++ b/custom_mutators/libafl_base/Makefile @@ -0,0 +1,9 @@ +all: target/release/liblibafl_base.so + cp target/release/liblibafl_base.so libafl_base.so + +target/release/liblibafl_base.so: src/lib.rs + cargo build --release + +clean: + cargo clean + rm -f libafl_base.so |
