diff options
author | hexcoder- <heiko@hexco.de> | 2020-05-28 08:27:21 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-05-28 08:27:21 +0200 |
commit | 8a2656681f27bd5356368736d5b0d836391ce2aa (patch) | |
tree | 8aeae6267ece50219df0f6e37570ed8953e2ce34 | |
parent | ef8d2528431c45ab3424969bd57b976979665f05 (diff) | |
download | afl++-8a2656681f27bd5356368736d5b0d836391ce2aa.tar.gz |
GNUmakefile: make binary-only: make qemu build optional, so unicornafl can be build
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 14ecfaad..8f559391 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -503,7 +503,7 @@ distrib: all radamsa $(MAKE) -C examples/afl_network_proxy $(MAKE) -C examples/socket_fuzzing $(MAKE) -C examples/argv_fuzzing - cd qemu_mode && sh ./build_qemu_support.sh + -cd qemu_mode && sh ./build_qemu_support.sh cd unicorn_mode && sh ./build_unicorn_support.sh binary-only: all radamsa @@ -512,7 +512,7 @@ binary-only: all radamsa $(MAKE) -C examples/afl_network_proxy $(MAKE) -C examples/socket_fuzzing $(MAKE) -C examples/argv_fuzzing - cd qemu_mode && sh ./build_qemu_support.sh + -cd qemu_mode && sh ./build_qemu_support.sh cd unicorn_mode && sh ./build_unicorn_support.sh source-only: all radamsa |