diff options
author | R. Elliott Childre <elliottchildre329@gmail.com> | 2020-12-20 13:36:07 -0500 |
---|---|---|
committer | R. Elliott Childre <elliottchildre329@gmail.com> | 2020-12-20 19:39:28 -0500 |
commit | eddabf6b05daf91a357d1cea1374e7b065aed791 (patch) | |
tree | a3324b0935c1347159c6c20acff9f3a378b85c64 | |
parent | 2e3cf10070681375a6c0e63ad39e7ce04ff22684 (diff) | |
download | afl++-eddabf6b05daf91a357d1cea1374e7b065aed791.tar.gz |
Remove binary-only target's depend on source tools
The `binary-only` target currently depends on the `all` target which always build the source tools, such as afl-cc and afl-as. This is unnecessary if the user specifically is asking for only binary fuzzing tools.
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 54198d82..1d879f9e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -586,7 +586,7 @@ distrib: all -cd unicorn_mode && unset CFLAGS && sh ./build_unicorn_support.sh .PHONY: binary-only -binary-only: all +binary-only: $(PROGS) $(MAKE) -C utils/libdislocator $(MAKE) -C utils/libtokencap $(MAKE) -C utils/afl_network_proxy |