mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
43581d7b66
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
18 lines
268 B
Makefile
18 lines
268 B
Makefile
|
|
.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>
|