freebsd-dev/libexec/tcpd/Makefile

20 lines
378 B
Makefile
Raw Normal View History

# $FreeBSD$
2005-10-14 15:41:09 +00:00
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
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
2004-12-21 10:49:29 +00:00
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif
DPADD= ${LIBWRAP}
LDADD= -lwrap
.include <bsd.prog.mk>