7d8e1e8dd9
These libraries are linked to directly by applications rather than opened at runtime via dlopen(). Discussed with: oshogbo Reviewed by: markj, emaste Differential Revision: https://reviews.freebsd.org/D39245
41 lines
738 B
Makefile
41 lines
738 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
SHLIB_MAJOR= 1
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
SHLIB= cap_fileargs
|
|
|
|
SRCS= cap_fileargs.c
|
|
.endif
|
|
|
|
INCS= cap_fileargs.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
MAN+= cap_fileargs.3
|
|
|
|
MLINKS+=cap_fileargs.3 libcap_fileargs.3
|
|
MLINKS+=cap_fileargs.3 fileargs_cinit.3
|
|
MLINKS+=cap_fileargs.3 fileargs_cinitnv.3
|
|
MLINKS+=cap_fileargs.3 fileargs_fopen.3
|
|
MLINKS+=cap_fileargs.3 fileargs_free.3
|
|
MLINKS+=cap_fileargs.3 fileargs_init.3
|
|
MLINKS+=cap_fileargs.3 fileargs_initnv.3
|
|
MLINKS+=cap_fileargs.3 fileargs_lstat.3
|
|
MLINKS+=cap_fileargs.3 fileargs_open.3
|
|
MLINKS+=cap_fileargs.3 fileargs_realpath.3
|
|
|
|
.include <bsd.lib.mk>
|