mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
19 lines
378 B
Makefile
19 lines
378 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(NO_INET6)
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBWRAP}
|
|
LDADD= -lwrap
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
|