From aa090e63ebb0214bdbfc4a48fba6b45a7e3305f7 Mon Sep 17 00:00:00 2001 From: Zakir Durumeric Date: Mon, 19 Aug 2013 21:02:27 -0400 Subject: [PATCH] Fixing issue #24; accidentally clobbering LDFLAGS and CFLAGS previously. --- src/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Makefile b/src/Makefile index 72eb0d5..5848a66 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,8 +1,6 @@ -CC=gcc - -CFLAGS=-Wall -pedantic -Wextra -std=gnu99 -I../lib -I./ -Ioutput_modules -O2 -g -LDFLAGS=-g -pthread -LDLIBS= -lpcap -lgmp -lm +CFLAGS+=-Wall -pedantic -Wextra -std=gnu99 -I../lib -I./ -Ioutput_modules -O2 -g +LDFLAGS+=-g -pthread +LDLIBS+= -lpcap -lgmp -lm TARGETS=zmap VPATH=../lib:output_modules:probe_modules PREFIX=/usr/local