98afb1459e3303fc30973479c05bcfc89bd687a0
[dragonfly.git] / usr.sbin / tcpdchk / Makefile
1 #
2 # $FreeBSD: src/usr.sbin/tcpdchk/Makefile,v 1.3.2.2 2001/04/25 12:11:00 ru Exp $
3 #
4
5 PROG=   tcpdchk
6 MAN=    tcpdchk.8
7 SRCS=   tcpdchk.c fakelog.c inetcf.c scaffold.c
8 WARNS?= 1
9
10 CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
11         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
12         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
13 .if !defined(NOINET6)
14 CFLAGS+=-DINET6
15 .endif
16
17 DPADD=  ${LIBWRAP}
18 LDADD=  -lwrap
19
20 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
21
22 .include <bsd.prog.mk>