1# 2# $FreeBSD$ 3# 4 5MAINTAINER=markm@FreeBSD.org 6 7PROG= tcpdmatch 8MAN8= tcpdmatch.8 9SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c 10 11CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \ 12 -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 13.if !defined(NOINET6) 14CFLAGS+=-DINET6 15.endif 16 17DPADD= ${LIBWRAP} 18LDADD= -lwrap 19 20.PATH: ${.CURDIR}/../../contrib/tcp_wrappers 21 22.include <bsd.prog.mk> 23