a7b5a3d486
All of them are needed to be able to boot to single user and be able to repair a existing FreeBSD installation so put them directly into FreeBSD-runtime. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21503
24 lines
312 B
Makefile
24 lines
312 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
LIB= nv
|
|
SHLIB_MAJOR= 0
|
|
|
|
.PATH: ${SRCTOP}/sys/contrib/libnv ${SRCTOP}/sys/sys
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
SRCS= cnvlist.c
|
|
SRCS+= dnvlist.c
|
|
SRCS+= msgio.c
|
|
SRCS+= nvlist.c
|
|
SRCS+= nvpair.c
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.lib.mk>
|