mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 20:54:13 +01:00
20 lines
314 B
Makefile
20 lines
314 B
Makefile
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
|
||
|
MAINTAINER=markm@FreeBSD.org
|
||
|
|
||
|
PROG= tcpdmatch
|
||
|
MAN8= tcpdmatch.8
|
||
|
SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c
|
||
|
|
||
|
CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
|
||
|
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
|
||
|
|
||
|
DPADD= ${LIBWRAP}
|
||
|
LDADD= -lwrap
|
||
|
|
||
|
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
|
||
|
|
||
|
.include <bsd.prog.mk>
|