Fixing issue #24; accidentally clobbering LDFLAGS and CFLAGS previously.

This commit is contained in:
Zakir Durumeric 2013-08-19 21:02:27 -04:00
parent 2a2ce7a2d0
commit 581725a8dd
1 changed files with 3 additions and 5 deletions

View File

@ -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