mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 08:07:28 -04:00
lib/libcasper/service/${service_name}/tests.
Reviewed by: emaste, ngie
Differential Revision: https://reviews.freebsd.org/D7759
24 lines
285 B
Makefile
24 lines
285 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=libcasper
|
|
LIB= cap_sysctl
|
|
|
|
SHLIB_MAJOR= 0
|
|
SHLIBDIR?= /lib/casper
|
|
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>
|