Initial import from FreeBSD RELENG_4:
[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 #
4
5 MAINTAINER=markm@FreeBSD.org
6
7 PROG=   tcpdmatch
8 MAN=    tcpdmatch.8
9 SRCS=   tcpdmatch.c fakelog.c inetcf.c scaffold.c
10
11 CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
12         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
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>