b208ff84c1
It enables us to control link-local connections by interface like this: ALL : [fe80::%ed0]/10 : allow ALL : [fe80::]/10 : deny
23 lines
364 B
Makefile
23 lines
364 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
MAINTAINER=markm@FreeBSD.org
|
|
|
|
PROG= tcpdmatch
|
|
MAN8= tcpdmatch.8
|
|
SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c
|
|
|
|
CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
|
|
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
|
|
.if !defined(NOINET6)
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBWRAP}
|
|
LDADD= -lwrap
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
|
|
|
|
.include <bsd.prog.mk>
|