]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/tcpdchk/Makefile
zfs: merge openzfs/zfs@17b2ae0b2 (master) into main
[FreeBSD/FreeBSD.git] / usr.sbin / tcpdchk / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 .PATH: ${SRCTOP}/contrib/tcp_wrappers
6
7 PACKAGE=        tcpd
8
9 PROG=   tcpdchk
10 MAN=    tcpdchk.8
11 SRCS=   tcpdchk.c fakelog.c inetcf.c scaffold.c
12
13 CFLAGS+=-DREAL_DAEMON_DIR=\"${LIBEXECDIR}\" \
14         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DPROCESS_OPTIONS \
15         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
16 .if ${MK_INET6_SUPPORT} != "no"
17 CFLAGS+=-DINET6
18 .endif
19
20 WARNS?= 0
21
22 LIBADD= wrap
23
24 .include <bsd.prog.mk>