e0bfbfce79
You need to update userland (world and ports) tools to be in sync with the kernel. Submitted by: mlaier Submitted by: eri
17 lines
271 B
Makefile
17 lines
271 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/pf/pflogd
|
|
|
|
PROG= pflogd
|
|
SRCS= pflogd.c pidfile.c privsep.c privsep_fdpass.c
|
|
MAN= pflogd.8
|
|
|
|
CFLAGS+=-include ${.CURDIR}/../../lib/libpcap/config.h
|
|
|
|
LDADD= -lpcap
|
|
DPADD= ${LIBPCAP} ${LIBUTIL}
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|