mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 18:02:17 -04:00
Reviewed by: emaste, markj (previous version), bcr (man page) Differential Revision: https://reviews.freebsd.org/D24688
33 lines
432 B
Makefile
33 lines
432 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib/casper
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
SHLIB_MAJOR= 2
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
SHLIB= cap_dns
|
|
|
|
SRCS= cap_dns.c
|
|
.endif
|
|
|
|
INCS= cap_dns.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
MAN+= cap_dns.3
|
|
|
|
MLINKS+=cap_dns.3 libcap_dns.3
|
|
MLINKS+=cap_dns.3 cap_dns_type_limit.3
|
|
MLINKS+=cap_dns.3 cap_dns_family_limit.3
|
|
|
|
.include <bsd.lib.mk>
|