]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - libexec/tcpd/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / libexec / tcpd / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .PATH: ${.CURDIR}/../../contrib/tcp_wrappers
6
7 PROG=   tcpd
8 MAN=    tcpd.8
9 CSTD?=  c89
10 CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
11         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
12         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
13         -DFACILITY=LOG_DAEMON
14 .if ${MK_INET6_SUPPORT} != "no"
15 CFLAGS+=-DINET6
16 .endif
17
18 DPADD=  ${LIBWRAP}
19 LDADD=  -lwrap
20
21 WARNS?= 1
22
23 .include <bsd.prog.mk>