12017ca883
This import includes The basic blacklist library and utility programs, to add a system-wide packet filtering notification mechanism to FreeBSD. The rational behind the daemon was given by Christos Zoulas in a presentation at vBSDcon 2015: https://youtu.be/fuuf8G28mjs Reviewed by: rpaulo Approved by: rpaulo Obtained from: NetBSD Relnotes: YES Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5912
16 lines
393 B
Makefile
16 lines
393 B
Makefile
# $NetBSD: Makefile,v 1.11 2015/01/27 19:40:36 christos Exp $
|
|
|
|
BINDIR=/sbin
|
|
|
|
PROGS=blacklistd blacklistctl
|
|
MAN.blacklistd=blacklistd.8 blacklistd.conf.5
|
|
MAN.blacklistctl=blacklistctl.8
|
|
SRCS.blacklistd = blacklistd.c conf.c run.c state.c support.c internal.c
|
|
SRCS.blacklistctl = blacklistctl.c conf.c state.c support.c internal.c
|
|
DBG=-g
|
|
|
|
LDADD+=-lutil
|
|
DPADD+=${LIBUTIL}
|
|
|
|
.include <bsd.prog.mk>
|