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