diff options
author | Maciej Domanski <maciej.domanski@trailofbits.com> | 2022-12-28 10:49:31 +0100 |
---|---|---|
committer | Maciej Domanski <maciej.domanski@trailofbits.com> | 2022-12-28 10:49:31 +0100 |
commit | 489f2d4d97c8497d6e259e9e50c27628ad075126 (patch) | |
tree | e569407368c2f48a341cbd9e0218aaa38c52bb74 | |
parent | 0710e4f17ca9224beaf3424c2cc6f07083ab7c1e (diff) | |
download | afl++-489f2d4d97c8497d6e259e9e50c27628ad075126.tar.gz |
makefile update
-rw-r--r-- | utils/argv_fuzzing/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/utils/argv_fuzzing/Makefile b/utils/argv_fuzzing/Makefile index dce092d6..1bc6b223 100644 --- a/utils/argv_fuzzing/Makefile +++ b/utils/argv_fuzzing/Makefile @@ -13,10 +13,6 @@ .PHONY: all install clean argv_fuzz_persistent_demo argv_fuzz_demo demo - - - - PREFIX ?= /usr/local BIN_PATH = $(PREFIX)/bin HELPER_PATH = $(PREFIX)/lib/afl @@ -59,10 +55,10 @@ install: argvfuzz32.so argvfuzz64.so if [ -f argvfuzz64.so ]; then set -e; install -m 755 argvfuzz64.so $(DESTDIR)$(HELPER_PATH)/; fi argv_fuzz_persistent_demo: argv_fuzz_persistent_demo.c - afl-clang-fast -fsanitize=address -g -o $@ $^ + CC=afl-clang-fast $(CC) -o $@ $^ argv_fuzz_demo: argv_fuzz_demo.c - afl-clang-fast -fsanitize=address -g -o $@ $^ + CC=afl-clang-fast $(CC) -o $@ $^ demo: argv_fuzz_persistent_demo argv_fuzz_demo |