flowtop-libs = -lurcu \
$(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs libnetfilter_conntrack 2> /dev/null ) \
$(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs ncurses 2> /dev/null \
|| echo '-lncurses') \
$(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs tinfo 2> /dev/null ) \
-lpthread
ifeq ($(CONFIG_GEOIP), 1)
flowtop-libs += -lGeoIP \
-lz
endif
flowtop-objs = xmalloc.o \
str.o \
sig.o \
sock.o \
proc.o \
dev.o \
link.o \
hash.o \
lookup.o \
screen.o \
die.o \
sysctl.o \
ui.o \
flowtop.o
ifeq ($(CONFIG_GEOIP), 1)
flowtop-objs += geoip.o \
ioops.o
endif
flowtop-eflags = $(shell $(PKG_CONFIG) --cflags ncurses) \
$(shell $(PKG_CONFIG) --cflags libnetfilter_conntrack)
flowtop-confs = tcp.conf \
udp.conf \
geoip.conf
net-next.git
powerpc: Fix incorrect PPC32 PAMU dependency
The Freescale PAMU can be enabled on both 32 and 64-bit
Power chips. Commit 477ab7a19ce restricted PAMU to PPC32.
PPC covers both.
Signed-off-by: Andy Fleming <afleming@gmail.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>