diff options
| author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2022-01-27 09:00:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-27 09:00:57 +0100 |
| commit | b2465a05ebc9a363290ea243b471b5ecb90dd6e1 (patch) | |
| tree | 2001b9dbbf3bfb08bc0f81a10b02a4d7c22f02a9 /custom_mutators/libafl_base/Makefile | |
| parent | f75535807a19cb7b3696fc0a701b97e994184502 (diff) | |
| parent | aa5f59b50196360e4d68178064120100c8ece4dd (diff) | |
| download | afl++-b2465a05ebc9a363290ea243b471b5ecb90dd6e1.tar.gz | |
Merge pull request #1311 from AFLplusplus/libafl_mutator
LibAFL basic (just havoc + tokens) custom mutator
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 |
