diff options
| author | van Hauser <vh@thc.org> | 2020-09-09 17:49:43 +0200 |
|---|---|---|
| committer | van Hauser <vh@thc.org> | 2020-09-09 17:49:43 +0200 |
| commit | a4cac3fce58c39e13ab120df7341b03781603b34 (patch) | |
| tree | 81032ae345680ce11cef2d76da5f81d9ef96bc59 /custom_mutators/symcc/Makefile | |
| parent | f8c0182e16a6eefd5df2cb39c8fd49cce701bcca (diff) | |
| download | afl++-a4cac3fce58c39e13ab120df7341b03781603b34.tar.gz | |
new custom mutator: symcc
Diffstat (limited to 'custom_mutators/symcc/Makefile')
| -rw-r--r-- | custom_mutators/symcc/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/custom_mutators/symcc/Makefile b/custom_mutators/symcc/Makefile new file mode 100644 index 00000000..7e2f7b4d --- /dev/null +++ b/custom_mutators/symcc/Makefile @@ -0,0 +1,14 @@ + +ifdef DEBUG + CFLAGS += -DDEBUG +endif + +all: symcc-mutator.so + +CFLAGS += -O3 -funroll-loops + +symcc-mutator.so: symcc.c + $(CC) $(CFLAGS) $(CPPFLAGS) -g -I../../include -shared -fPIC -o symcc-mutator.so symcc.c + +clean: + rm -f symcc-mutator.so *.o *~ core |
