mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 09:21:31 -05:00
src/cddl and src/sys/cddl directories per the core@ decision following the license review. This change modifies the affected Makefiles to reference the sources in their new location.
17 lines
459 B
Makefile
17 lines
459 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libnvpair
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/nvpair
|
|
|
|
LIB= nvpair
|
|
|
|
SRCS= libnvpair.c \
|
|
nvpair_alloc_system.c \
|
|
nvpair_alloc_fixed.c \
|
|
nvpair.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/include
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common
|
|
|
|
.include <bsd.lib.mk>
|