opnsense-src/libexec/fingerd/Makefile
Ed Maste 53a984a36f Track upstream project rename in contrib/blocklistd
Upstream is now https://github.com/zoulasc/blocklist/.  Rename the
contrib directory and update Makefiles to match, in advance of the next
vendor branch update.

Sponsored by:	The FreeBSD Foundation

(cherry picked from commit 5f4c09dd85bff675e0ca63c55ea3c517e0fddfcc)
2024-01-07 14:31:11 -05:00

18 lines
305 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/4/93
.include <src.opts.mk>
PROG= fingerd
LIBADD= util
MAN= fingerd.8
WARNS?= 2
WFORMAT=0
.if ${MK_BLACKLIST_SUPPORT} != "no"
CFLAGS+= -DUSE_BLACKLIST -I${SRCTOP}/contrib/blocklist/include
LIBADD+= blacklist
LDFLAGS+=-L${LIBBLACKLISTDIR}
.endif
.include <bsd.prog.mk>