345e52e742
- MAN[1-9] -> MAN.
23 lines
363 B
Makefile
23 lines
363 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
MAINTAINER=markm@FreeBSD.org
|
|
|
|
PROG= tcpdmatch
|
|
MAN= tcpdmatch.8
|
|
SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c
|
|
|
|
CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
|
|
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
|
|
.if !defined(NOINET6)
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBWRAP}
|
|
LDADD= -lwrap
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
|
|
|
|
.include <bsd.prog.mk>
|