mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
respected. Please notice that libcasper is already in ObsoleteFiles so we don't add it again. Reported by: Herbert J. Skuhra <herbert@mailbox.org> Reviewed by: bdrewery@ Differential Revision: https://reviews.freebsd.org/D12918
24 lines
274 B
Makefile
24 lines
274 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib/casper
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=libcasper
|
|
|
|
SHLIB_MAJOR= 0
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
SHLIB= cap_random
|
|
|
|
SRCS= cap_random.c
|
|
.endif
|
|
|
|
INCS= cap_random.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
.include <bsd.lib.mk>
|