diff options
author | vanhauser-thc <vh@thc.org> | 2023-04-04 15:47:53 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-04-04 15:47:53 +0200 |
commit | fcd21256780fd21c55e72e9338b3992c60db22dc (patch) | |
tree | 2f800ee67c168b84221ea11bf5ec768a4cf40708 /custom_mutators/aflpp/Makefile | |
parent | 635da39bd135b7db3529a4b3b059b85260ce14a5 (diff) | |
download | afl++-fcd21256780fd21c55e72e9338b3992c60db22dc.tar.gz |
prepare for strategies
Diffstat (limited to 'custom_mutators/aflpp/Makefile')
-rw-r--r-- | custom_mutators/aflpp/Makefile | 10 |
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 |