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