]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/tcpdmatch/Makefile
THIS BRANCH IS OBSOLETE, PLEASE READ:
[FreeBSD/FreeBSD.git] / usr.sbin / tcpdmatch / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 .PATH: ${SRCTOP}/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=\"${LIBEXECDIR}\" \
12         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
13 .if ${MK_INET6_SUPPORT} != "no"
14 CFLAGS+=-DINET6
15 .endif
16
17 WARNS?= 0
18
19 LIBADD= wrap
20
21 .include <bsd.prog.mk>