summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-08 09:53:25 +0100
committervan Hauser <vh@thc.org>2020-02-08 09:53:25 +0100
commita1dc73241473156178009d5132b76e4307bb1664 (patch)
tree5293bf26455a3841fdcb859231a7f84be07aeeb8 /Makefile
parentdaddc92b4a5b3d9a30255615908e643365f64f53 (diff)
downloadafl-dyninst-a1dc73241473156178009d5132b76e4307bb1664.tar.gz
various fixes and changes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d029936..305e0a1 100644
--- a/Makefile
+++ b/Makefile
@@ -31,11 +31,7 @@ CFLAGS = -Wall -O3 -g -std=gnu99
 all: afl-dyninst libAflDyninst.so
 
 afl-dyninst:	afl-dyninst.o
-	$(CXX) $(CXXFLAGS) -L$(DYNINST_ROOT)/lib \
-		-L$(DEPS_ROOT)/lib \
-		-o afl-dyninst afl-dyninst.o \
-		$(DYNINST_OPT) \
-		-ldyninstAPI
+	$(CXX) $(CXXFLAGS) -L$(DYNINST_ROOT)/lib -L$(DEPS_ROOT)/lib -o afl-dyninst afl-dyninst.o $(DYNINST_OPT) -ldyninstAPI
 
 libAflDyninst.so: libAflDyninst.cpp
 	$(CXX) -O3 -std=c++11 $(LIBFLAGS) -I$(AFL_ROOT) -I$(DYNINST_ROOT)/include -I$(DEPS_ROOT)/include libAflDyninst.cpp -o libAflDyninst.so