mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 05:13:58 -05:00
bsd.own.mk (included from src.opts.mk) sets SHLIBDIR?=${LIBDIR}, so
SHLIBDIR must be set before including either one of them.
MFC with: 305626
Sponsored by: The FreeBSD Foundation
25 lines
277 B
Makefile
25 lines
277 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib/casper
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=libcasper
|
|
LIB= cap_grp
|
|
|
|
SHLIB_MAJOR= 0
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
SRCS= cap_grp.c
|
|
|
|
INCS= cap_grp.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|