]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.sbin/tcpdchk/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 DPADD=  ${LIBWRAP}
19 LDADD=  -lwrap
20
21 .include <bsd.prog.mk>