1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-20 15:43:16 +00:00
freebsd/libexec/tcpd/Makefile

20 lines
377 B
Makefile
Raw Normal View History

# $FreeBSD$
PROG= tcpd
MAN= tcpd.8
2003-06-02 02:35:58 +00:00
CSTD?= c89
CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
-DFACILITY=LOG_DAEMON
.if !defined(NOINET6)
CFLAGS+=-DINET6
.endif
DPADD= ${LIBWRAP}
LDADD= -lwrap
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers