mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
27 lines
313 B
Makefile
27 lines
313 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib/casper
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=libcasper
|
|
|
|
SHLIB_MAJOR= 0
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
SHLIB= cap_sysctl
|
|
|
|
SRCS= cap_sysctl.c
|
|
.endif
|
|
|
|
INCS= cap_sysctl.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.lib.mk>
|