mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
19 lines
377 B
Makefile
19 lines
377 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= tcpd
|
|
MAN= tcpd.8
|
|
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
|