1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: releng/11.0/libexec/fingerd/Makefile 301243 2016-06-03 07:00:28Z lidl $
3
4.include <src.opts.mk>
5
6PROG=	fingerd
7LIBADD=	util
8MAN=	fingerd.8
9
10WARNS?=	2
11WFORMAT=0
12
13.if ${MK_BLACKLIST_SUPPORT} != "no"
14CFLAGS+= -DUSE_BLACKLIST -I${SRCTOP}/contrib/blacklist/include
15LIBADD+= blacklist
16LDFLAGS+=-L${LIBBLACKLISTDIR}
17.endif
18
19.include <bsd.prog.mk>
20