diff options
author | vanhauser-thc <vh@thc.org> | 2022-12-29 10:25:12 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-12-29 10:25:18 +0100 |
commit | ffe89e8f2d142919f90de2994d23d0249b5d12ca (patch) | |
tree | a9e20ff5b6798261dff1016ce09b8ece6eb30977 | |
parent | 31d4dc8a3879c53521563bd839b138978f5487af (diff) | |
download | afl++-ffe89e8f2d142919f90de2994d23d0249b5d12ca.tar.gz |
fix makefile typo
-rw-r--r-- | GNUmakefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/GNUmakefile b/GNUmakefile index 43f96ffe..6921cc85 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -637,16 +637,16 @@ endif # -$(MAKE) -C utils/plot_ui -$(MAKE) -C frida_mode ifneq "$(SYS)" "Darwin" -ifeq "$(ARCH)" "aarch64" - ifndef NO_CORESIGHT + ifeq "$(ARCH)" "aarch64" + ifndef NO_CORESIGHT -$(MAKE) -C coresight_mode + endif endif -endif -ifeq "$(SYS)" "Linux" - ifndef NO_NYX + ifeq "$(SYS)" "Linux" + ifndef NO_NYX -cd nyx_mode && ./build_nyx_support.sh + endif endif -endif -cd qemu_mode && sh ./build_qemu_support.sh ifeq "$(ARCH)" "aarch64" ifndef NO_UNICORN_ARM64 @@ -662,7 +662,7 @@ binary-only: test_shm test_python ready $(PROGS) ifneq "$(SYS)" "Darwin" -$(MAKE) -C utils/libdislocator -$(MAKE) -C utils/libtokencap -#endif +endif -$(MAKE) -C utils/afl_network_proxy -$(MAKE) -C utils/socket_fuzzing -$(MAKE) -C utils/argv_fuzzing |