mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
29 lines
370 B
Makefile
29 lines
370 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}
|
|
|
|
MAN+= cap_random.3
|
|
|
|
MLINKS+=cap_random.3 libcap_random.3
|
|
MLINKS+=cap_random.3 cap_random_buf.3
|
|
|
|
.include <bsd.lib.mk>
|