mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
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/blacklist/include
|
|
LIBADD+= blacklist
|
|
LDFLAGS+=-L${LIBBLACKLISTDIR}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|