freebsd-dev/usr.sbin/tcpdmatch/Makefile
David E. O'Brien 90e655ea4e Perform a major cleanup of the usr.sbin Makefiles.
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.
2001-07-20 06:20:32 +00:00

21 lines
360 B
Makefile

# $FreeBSD$
MAINTAINER= markm@FreeBSD.org
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
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
.include <bsd.prog.mk>