diff --git a/libexec/tcpd/Makefile b/libexec/tcpd/Makefile new file mode 100644 index 000000000000..74c689174136 --- /dev/null +++ b/libexec/tcpd/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +MAINTAINER= markm@FreeBSD.org + +PROG= tcpd +MAN= tcpd.8 +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 + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers