opnsense-src/lib/libcasper/services/cap_grp/Makefile
Emmanuel Vadot 724fad3ad0 pkgbase: Move libcap_ to FreeBSD-runtime
A lot of binaries present in FreeBSD-runtime depend on it so move
the libs there.

Reviewed by:	bapt, gjb
Differential Revision:	https://reviews.freebsd.org/D21501
2019-09-05 14:10:26 +00:00

43 lines
779 B
Makefile

# $FreeBSD$
SHLIBDIR?= /lib/casper
.include <src.opts.mk>
PACKAGE= runtime
SHLIB_MAJOR= 1
INCSDIR?= ${INCLUDEDIR}/casper
.if ${MK_CASPER} != "no"
SHLIB= cap_grp
SRCS= cap_grp.c
.endif
INCS= cap_grp.h
LIBADD= nv
CFLAGS+=-I${.CURDIR}
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
MAN+= cap_grp.3
MLINKS+=cap_grp.3 libcap_grp.3
MLINKS+=cap_grp.3 cap_getgrent.3
MLINKS+=cap_grp.3 cap_getgrnam.3
MLINKS+=cap_grp.3 cap_getgrgid.3
MLINKS+=cap_grp.3 cap_getgrent_r.3
MLINKS+=cap_grp.3 cap_getgrnam_r.3
MLINKS+=cap_grp.3 cap_getgrgid_r.3
MLINKS+=cap_grp.3 cap_setgroupent.3
MLINKS+=cap_grp.3 cap_setgrent.3
MLINKS+=cap_grp.3 cap_endgrent.3
MLINKS+=cap_grp.3 cap_grp_limit_cmds.3
MLINKS+=cap_grp.3 cap_grp_limit_fields.3
MLINKS+=cap_grp.3 cap_grp_limit_groups.3
.include <bsd.lib.mk>