diff options
| author | vanhauser-thc <vh@thc.org> | 2021-07-08 20:13:50 +0200 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2021-07-08 20:13:50 +0200 |
| commit | 19b01d763ac11ea865589fc73cbbb1806f0f5f2a (patch) | |
| tree | 2d200b747b8dddb2aa9d7d3bc1ed8bbdd6f757f8 /custom_mutators/grammatron/Makefile | |
| parent | a09ab9953419cc06ae88e100c934198ed6ee1802 (diff) | |
| download | afl++-19b01d763ac11ea865589fc73cbbb1806f0f5f2a.tar.gz | |
add grammatron custom mutator
Diffstat (limited to 'custom_mutators/grammatron/Makefile')
| -rw-r--r-- | custom_mutators/grammatron/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/custom_mutators/grammatron/Makefile b/custom_mutators/grammatron/Makefile new file mode 100644 index 00000000..c368295e --- /dev/null +++ b/custom_mutators/grammatron/Makefile @@ -0,0 +1,7 @@ +all: gramatron.so + +gramatron.so: gramfuzz.c gramfuzz.h gramfuzz-helpers.c gramfuzz-mutators.c gramfuzz-util.c hashmap.c hashmap.h test.c test.h utarray.h uthash.h + $(CC) -O3 -g -fPIC -Wl,--allow-multiple-definition -o gramatron.so -shared -I. -I/prg/dev/include gramfuzz.c gramfuzz-helpers.c gramfuzz-mutators.c gramfuzz-util.c hashmap.c test.c + +clean: + rm -f gramatron.so |
