diff options
author | hexcoder- <heiko@hexco.de> | 2021-01-04 15:14:20 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-01-04 15:14:20 +0100 |
commit | 33a7d6f1688856c050b0ac71ac1df4018e4d531c (patch) | |
tree | 9e2888ee429ff46ed59feedd39020e9c3bad5b55 /utils/persistent_mode | |
parent | c423aebb1a6987d8ca58175aee23bc08b611d4c8 (diff) | |
download | afl++-33a7d6f1688856c050b0ac71ac1df4018e4d531c.tar.gz |
code cleanups (from cppcheck)
Diffstat (limited to 'utils/persistent_mode')
-rw-r--r-- | utils/persistent_mode/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/persistent_mode/Makefile b/utils/persistent_mode/Makefile index 6fa1c30e..e348c46c 100644 --- a/utils/persistent_mode/Makefile +++ b/utils/persistent_mode/Makefile @@ -1,10 +1,10 @@ all: - afl-clang-fast -o persistent_demo persistent_demo.c - afl-clang-fast -o persistent_demo_new persistent_demo_new.c - AFL_DONT_OPTIMIZE=1 afl-clang-fast -o test-instr test-instr.c + ../../afl-clang-fast -o persistent_demo persistent_demo.c + ../../afl-clang-fast -o persistent_demo_new persistent_demo_new.c + AFL_DONT_OPTIMIZE=1 ../../afl-clang-fast -o test-instr test-instr.c document: - AFL_DONT_OPTIMIZE=1 afl-clang-fast -D_AFL_DOCUMENT_MUTATIONS -o test-instr test-instr.c + AFL_DONT_OPTIMIZE=1 ../../afl-clang-fast -D_AFL_DOCUMENT_MUTATIONS -o test-instr test-instr.c clean: rm -f persistent_demo persistent_demo_new test-instr |