xref: /freebsd-14.2/libexec/fingerd/Makefile (revision 53a984a3)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2
3.include <src.opts.mk>
4
5PROG=	fingerd
6LIBADD=	util
7MAN=	fingerd.8
8
9WARNS?=	2
10WFORMAT=0
11
12.if ${MK_BLACKLIST_SUPPORT} != "no"
13CFLAGS+= -DUSE_BLACKLIST -I${SRCTOP}/contrib/blocklist/include
14LIBADD+= blacklist
15LDFLAGS+=-L${LIBBLACKLISTDIR}
16.endif
17
18.include <bsd.prog.mk>
19