xref: /dflybsd-src/libexec/tcpd/Makefile (revision d37f1b57dcde8b5327e5dbf772d1103f3f57774c)
1984263bcSMatthew Dillon# $FreeBSD: src/libexec/tcpd/Makefile,v 1.1.2.1 2002/08/31 18:43:41 dwmalone Exp $
2984263bcSMatthew Dillon
3984263bcSMatthew DillonPROG=	tcpd
4984263bcSMatthew DillonMAN=	tcpd.8
5*8f5c3d2aSSascha WildnerWARNS?=	1
6*8f5c3d2aSSascha Wildner
7984263bcSMatthew DillonCFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
8984263bcSMatthew Dillon	-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
9984263bcSMatthew Dillon	-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
10984263bcSMatthew Dillon	-DFACILITY=LOG_DAEMON
11984263bcSMatthew Dillon.if !defined(NOINET6)
12984263bcSMatthew DillonCFLAGS+=-DINET6
13984263bcSMatthew Dillon.endif
14984263bcSMatthew Dillon
15984263bcSMatthew DillonDPADD=	${LIBWRAP}
16984263bcSMatthew DillonLDADD=	-lwrap
17984263bcSMatthew Dillon
18984263bcSMatthew Dillon.include <bsd.prog.mk>
19984263bcSMatthew Dillon
20984263bcSMatthew Dillon.PATH:	${.CURDIR}/../../contrib/tcp_wrappers
21