summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e6a2314..7cf1cc8 100644
--- a/Makefile
+++ b/Makefile
@@ -59,6 +59,17 @@ prof:
cmake .. -DCMAKE_BUILD_TYPE=Profile; \
make
+afl:
+ @[ -n "$(AFL_PATH)" ] || { echo '$$AFL_PATH not set'; false; }
+ mkdir -p $(BUILDDIR)
+ cd $(BUILDDIR) && cmake .. -DCMAKE_C_COMPILER=$(AFL_PATH)/afl-gcc
+ make
+ $(AFL_PATH)/afl-fuzz \
+ -i test/afl_test_cases \
+ -o test/afl_results \
+ -m none \
+ $(CMARK)
+
mingw:
mkdir -p $(MINGW_BUILDDIR); \
cd $(MINGW_BUILDDIR); \