mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-23 14:34:25 +00:00
- Update the Makefile in examples/custom_mutators - Add a test program for testing the custom mutator - Update test.sh for testing the custom mutator - [TODO] Update the result checking criterias of the custom mutator in test.sh
8 lines
171 B
Makefile
8 lines
171 B
Makefile
all: libexamplemutator.so
|
|
|
|
libexamplemutator.so:
|
|
$(CC) $(CFLAGS) -fPIC -shared -g -I ../../include example.c -o libexamplemutator.so
|
|
|
|
clean:
|
|
rm -rf libexamplemutator.so
|