90e655ea4e
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.
21 lines
360 B
Makefile
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>
|