5e51cafc60
This change allows me to disable -Werror by using NO_WERROR. Right now I can't build pflogd using Clang, because Clang generates more warnings when passing -Wall.
15 lines
222 B
Makefile
15 lines
222 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/pf/pflogd
|
|
|
|
PROG= pflogd
|
|
SRCS= pflogd.c pidfile.c privsep.c privsep_fdpass.c
|
|
MAN= pflogd.8
|
|
|
|
LDADD= -lpcap -lutil
|
|
DPADD= ${LIBPCAP} ${LIBUTIL}
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|