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