Merge branch 'vendor/AWK'
[dragonfly.git] / usr.sbin / tcpdchk / Makefile
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
6 PROG=   tcpdchk
7 MAN=    tcpdchk.8
8 SRCS=   tcpdchk.c fakelog.c inetcf.c scaffold.c
9 CSTD?=  gnu89
10 WARNS?= 0
11
12 CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \
13         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
14         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
15 .if !defined(NOINET6)
16 CFLAGS+=-DINET6
17 .endif
18
19 DPADD=  ${LIBWRAP}
20 LDADD=  -lwrap
21
22 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
23
24 .include <bsd.prog.mk>