mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -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
286 B
Makefile
25 lines
286 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib/casper
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=libcasper
|
|
LIB= cap_sysctl
|
|
|
|
SHLIB_MAJOR= 0
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
SRCS= cap_sysctl.c
|
|
|
|
INCS= cap_sysctl.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|