diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-04-07 08:56:29 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-04-07 08:56:29 -0700 |
commit | c6a8c30c228c32b3b32442eeb39d33b64db56f4f (patch) | |
tree | 0b051df10f9504fb283355f4291a0327b6ec9c1e /Makefile | |
parent | 5713f6b25adf37c528c73c34527a165c7ba68be8 (diff) |
For afl target, don't build tests.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ prof: afl: @[ -n "$(AFL_PATH)" ] || { echo '$$AFL_PATH not set'; false; } mkdir -p $(BUILDDIR) - cd $(BUILDDIR) && cmake .. -DCMAKE_C_COMPILER=$(AFL_PATH)/afl-clang + cd $(BUILDDIR) && cmake .. -DCMARK_TESTS=0 -DCMAKE_C_COMPILER=$(AFL_PATH)/afl-clang $(MAKE) $(AFL_PATH)/afl-fuzz \ -i test/afl_test_cases \ |