e327f52446
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.
26 lines
680 B
Makefile
26 lines
680 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libuutil/common
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/avl
|
|
|
|
LIB= uutil
|
|
SRCS= avl.c \
|
|
uu_alloc.c \
|
|
uu_avl.c \
|
|
uu_dprintf.c \
|
|
uu_ident.c \
|
|
uu_list.c \
|
|
uu_misc.c \
|
|
uu_open.c \
|
|
uu_pname.c \
|
|
uu_strtoint.c
|
|
|
|
CFLAGS+= -DNATIVE_BUILD
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libuutil/common
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/include
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/head
|
|
|
|
.include <bsd.lib.mk>
|