mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
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)
18 lines
305 B
Makefile
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>
|