about summary refs log tree commit diff
path: root/custom_mutators/libafl_base/Makefile
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2022-01-27 09:00:57 +0100
committerGitHub <noreply@github.com>2022-01-27 09:00:57 +0100
commitb2465a05ebc9a363290ea243b471b5ecb90dd6e1 (patch)
tree2001b9dbbf3bfb08bc0f81a10b02a4d7c22f02a9 /custom_mutators/libafl_base/Makefile
parentf75535807a19cb7b3696fc0a701b97e994184502 (diff)
parentaa5f59b50196360e4d68178064120100c8ece4dd (diff)
downloadafl++-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/Makefile9
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