xref: /dragonfly/libexec/tcpd/Makefile (revision 2cd2d2b5)
1# $FreeBSD: src/libexec/tcpd/Makefile,v 1.1.2.1 2002/08/31 18:43:41 dwmalone Exp $
2# $DragonFly: src/libexec/tcpd/Makefile,v 1.3 2004/01/31 06:56:40 dillon Exp $
3
4PROG=	tcpd
5MAN=	tcpd.8
6CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
7	-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
8	-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
9	-DFACILITY=LOG_DAEMON
10.if !defined(NOINET6)
11CFLAGS+=-DINET6
12.endif
13
14DPADD=	${LIBWRAP}
15LDADD=	-lwrap
16
17.include <bsd.prog.mk>
18
19.PATH:	${.CURDIR}/../../contrib/tcp_wrappers
20