Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[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 # $DragonFly: src/usr.sbin/tcpdchk/Makefile,v 1.2 2003/06/17 04:30:03 dillon Exp $
4 #
5
6 MAINTAINER=markm@FreeBSD.org
7
8 PROG=   tcpdchk
9 MAN=    tcpdchk.8
10 SRCS=   tcpdchk.c fakelog.c inetcf.c scaffold.c
11
12 CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
13         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
14         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
15 .if !defined(NOINET6)
16 CFLAGS+=-DINET6
17 .endif
18
19 DPADD=  ${LIBWRAP}
20 LDADD=  -lwrap
21
22 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
23
24 .include <bsd.prog.mk>