mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
18 lines
494 B
Makefile
18 lines
494 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
|
|
CFLAGS+= -I${.CURDIR}/../../../sys
|
|
|
|
.include <bsd.lib.mk>
|