diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-13 15:37:17 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-13 15:37:17 +0200 |
commit | 278f4fd08eb4d1c70a35810409fc4101e1d4a8c4 (patch) | |
tree | c1118397e69783570ba23baae03719cfc8b59701 | |
parent | df86816e7d5019b7aee19ee7eb89f16f11c3eae8 (diff) | |
download | afl++-278f4fd08eb4d1c70a35810409fc4101e1d4a8c4.tar.gz |
make source-only and binary-only
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 93d3eba7..44258a4f 100644 --- a/Makefile +++ b/Makefile @@ -219,6 +219,17 @@ distrib: all cd qemu_mode && sh ./build_qemu_support.sh cd unicorn_mode && sh ./build_unicorn_support.sh +binary-only: all + $(MAKE) -C libdislocator + $(MAKE) -C libtokencap + cd qemu_mode && sh ./build_qemu_support.sh + cd unicorn_mode && sh ./build_unicorn_support.sh + +source-only: all + $(MAKE) -C llvm_mode + $(MAKE) -C libdislocator + $(MAKE) -C libtokencap + %.8: % @echo .TH $* 8 `date -I` "afl++" > $@ @echo .SH NAME >> $@ |