1# 2# $FreeBSD: src/usr.sbin/tcpdchk/Makefile,v 1.3.2.2 2001/04/25 12:11:00 ru Exp $ 3# $DragonFly: src/usr.sbin/tcpdchk/Makefile,v 1.3 2004/01/31 06:56:46 dillon Exp $ 4# 5 6PROG= tcpdchk 7MAN= tcpdchk.8 8SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c 9WARNS?= 0 10 11CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \ 12 -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \ 13 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" 14.if !defined(NOINET6) 15CFLAGS+=-DINET6 16.endif 17 18DPADD= ${LIBWRAP} 19LDADD= -lwrap 20 21.PATH: ${.CURDIR}/../../contrib/tcp_wrappers 22 23.include <bsd.prog.mk> 24