From e96a2dd68140dd2ed43119c1450239e3755ba16b Mon Sep 17 00:00:00 2001 From: Hexcoder Date: Sat, 13 Jul 2019 08:26:16 +0200 Subject: fix Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7c151f8b..2b860b66 100644 --- a/Makefile +++ b/Makefile @@ -137,16 +137,16 @@ afl-common.o : afl-common.c sharedmem.o : sharedmem.c $(CC) $(CFLAGS) -c sharedmem.c -afl-fuzz: afl-fuzz.c sharedmem.o $(COMM_HDR) | test_x86 +afl-fuzz: afl-fuzz.c afl-common.o sharedmem.o $(COMM_HDR) | test_x86 $(CC) $(CFLAGS) $@.c afl-common.o sharedmem.o -o $@ $(LDFLAGS) $(PYFLAGS) -afl-showmap: afl-showmap.c sharedmem.o $(COMM_HDR) | test_x86 +afl-showmap: afl-showmap.c afl-common.o sharedmem.o $(COMM_HDR) | test_x86 $(CC) $(CFLAGS) $@.c afl-common.o sharedmem.o -o $@ $(LDFLAGS) -afl-tmin: afl-tmin.c sharedmem.o $(COMM_HDR) | test_x86 +afl-tmin: afl-tmin.c afl-common.o sharedmem.o $(COMM_HDR) | test_x86 $(CC) $(CFLAGS) $@.c afl-common.o sharedmem.o -o $@ $(LDFLAGS) -afl-analyze: afl-analyze.c sharedmem.o $(COMM_HDR) | test_x86 +afl-analyze: afl-analyze.c afl-common.o sharedmem.o $(COMM_HDR) | test_x86 $(CC) $(CFLAGS) $@.c afl-common.o sharedmem.o -o $@ $(LDFLAGS) afl-gotcpu: afl-gotcpu.c $(COMM_HDR) | test_x86 -- cgit v1.2.3