about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHexcoder <heiko@hexco.de>2019-07-13 08:26:16 +0200
committerHexcoder <heiko@hexco.de>2019-07-13 09:39:51 +0200
commite96a2dd68140dd2ed43119c1450239e3755ba16b (patch)
treef5da4b120433040c29c5dca0bd094d0a4ad98de9
parentf45332e1ab1f7b82c38c6fcc3c451fca35d5a9ce (diff)
downloadafl++-e96a2dd68140dd2ed43119c1450239e3755ba16b.tar.gz
fix Makefile
-rw-r--r--Makefile8
1 files 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