]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/tcpd/Makefile
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / libexec / tcpd / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../contrib/tcp_wrappers
4
5 PROG=   tcpd
6 MAN=    tcpd.8
7 CSTD?=  c89
8 CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
9         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
10         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
11         -DFACILITY=LOG_DAEMON
12 .if !defined(NO_INET6)
13 CFLAGS+=-DINET6
14 .endif
15
16 DPADD=  ${LIBWRAP}
17 LDADD=  -lwrap
18
19 .include <bsd.prog.mk>