about summary refs log tree commit diff
path: root/custom_mutators/aflpp/Makefile
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-04-04 15:47:53 +0200
committervanhauser-thc <vh@thc.org>2023-04-04 15:47:53 +0200
commitfcd21256780fd21c55e72e9338b3992c60db22dc (patch)
tree2f800ee67c168b84221ea11bf5ec768a4cf40708 /custom_mutators/aflpp/Makefile
parent635da39bd135b7db3529a4b3b059b85260ce14a5 (diff)
downloadafl++-fcd21256780fd21c55e72e9338b3992c60db22dc.tar.gz
prepare for strategies
Diffstat (limited to 'custom_mutators/aflpp/Makefile')
-rw-r--r--custom_mutators/aflpp/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/custom_mutators/aflpp/Makefile b/custom_mutators/aflpp/Makefile
new file mode 100644
index 00000000..8efdf3e4
--- /dev/null
+++ b/custom_mutators/aflpp/Makefile
@@ -0,0 +1,10 @@
+
+CFLAGS = -O3 -funroll-loops -fPIC -Wl,-Bsymbolic
+
+all: aflpp-mutator.so
+
+aflpp-mutator.so:	aflpp.c
+	$(CC) $(CFLAGS) -I../../include -I. -shared -o aflpp-mutator.so aflpp.c ../../src/afl-performance.c
+
+clean:
+	rm -f *.o *~ *.so core