Commit 792f3066 authored by robertdavidgraham's avatar robertdavidgraham
Browse files

fixes

parent f2481860
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ SYS := $(shell gcc -dumpmachine)
# environment where things likely will work -- as well as anything
# works on the bajillion of different Linux environments
ifneq (, $(findstring linux, $(SYS)))
LIBS = -lpfring -lpcap -lm -lrt -rdynamic
LIBS = -lpcap -lm -lrt -rdynamic
INCLUDES = -I. -I../PF_RING/userland/lib
endif

@@ -44,7 +44,7 @@ endif
# this works on llvm or real gcc
CC = gcc

DEFINES = -DPFRING
DEFINES = 
CFLAGS = -g $(INCLUDES) $(DEFINES) -Wall -O3 -Wno-format
.SUFFIXES: .c .cpp