]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/tcpdchk/Makefile
ident(1): Normalizing date format
[FreeBSD/FreeBSD.git] / usr.sbin / tcpdchk / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 .PATH: ${SRCTOP}/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=\"${LIBEXECDIR}\" \
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 LIBADD= wrap
21
22 .include <bsd.prog.mk>