freebsd-dev/usr.sbin/tcpdchk/Makefile
Hajimu UMEMOTO b208ff84c1 Add IPv6 scoped address support.
It enables us to control link-local connections by interface like
this:

    ALL : [fe80::%ed0]/10 : allow
    ALL : [fe80::]/10 : deny
2000-07-14 17:15:34 +00:00

24 lines
429 B
Makefile

#
# $FreeBSD$
#
MAINTAINER=markm@FreeBSD.org
PROG= tcpdchk
MAN8= tcpdchk.8
SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c
CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
.if !defined(NOINET6)
CFLAGS+=-DINET6
.endif
DPADD= ${LIBWRAP}
LDADD= -lwrap
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
.include <bsd.prog.mk>