949eda893b
This simplifies pathing in make/displayed output. MFC after: 1 week Sponsored by: Dell EMC Isilon
22 lines
349 B
Makefile
22 lines
349 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/contrib/tcp_wrappers
|
|
|
|
PROG= tcpdmatch
|
|
MAN= tcpdmatch.8
|
|
SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c
|
|
|
|
CFLAGS+=-DREAL_DAEMON_DIR=\"${LIBEXECDIR}\" \
|
|
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
WARNS?= 0
|
|
|
|
LIBADD= wrap
|
|
|
|
.include <bsd.prog.mk>
|