Pull up CVS idents from FreeBSD to match our current version.
[dragonfly.git] / usr.sbin / tcpdchk / Makefile
blob0350bd022bea054307656b9755b44718adf490f0
2 # $FreeBSD: src/usr.sbin/tcpdchk/Makefile,v 1.3.2.2 2001/04/25 12:11:00 ru Exp $
3 # $DragonFly: src/usr.sbin/tcpdchk/Makefile,v 1.3 2004/01/31 06:56:46 dillon Exp $
6 PROG= tcpdchk
7 MAN= tcpdchk.8
8 SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c
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
17 DPADD= ${LIBWRAP}
18 LDADD= -lwrap
20 .PATH: ${.CURDIR}/../../contrib/tcp_wrappers
22 .include <bsd.prog.mk>