19 lines
330 B
Makefile
19 lines
330 B
Makefile
# $FreeBSD$
|
|
|
|
.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(NO_INET6)
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBWRAP}
|
|
LDADD= -lwrap
|
|
|
|
.include <bsd.prog.mk>
|