38 lines
796 B
Makefile
38 lines
796 B
Makefile
# $NetBSD: Makefile,v 1.8 2015/09/24 14:36:54 christos Exp $
|
|
|
|
# $FreeBSD: src/cddl/lib/libctf/Makefile,v 1.2.2.1 2009/08/03 08:13:06 kensmith Exp $
|
|
|
|
.include "../../Makefile.inc"
|
|
|
|
LIB= ctf
|
|
MAN= ctf.5
|
|
|
|
SRCS= ctf_create.c \
|
|
ctf_decl.c \
|
|
ctf_error.c \
|
|
ctf_hash.c \
|
|
ctf_labels.c \
|
|
ctf_lib.c \
|
|
ctf_lookup.c \
|
|
ctf_open.c \
|
|
ctf_subr.c \
|
|
ctf_types.c \
|
|
ctf_util.c
|
|
|
|
.PATH: ${.CURDIR}/../../dist/common/ctf
|
|
.PATH: ${.CURDIR}/../../dist/lib/libctf/common
|
|
|
|
CPPFLAGS+= -DCTF_OLD_VERSIONS
|
|
|
|
CPPFLAGS+= -I${OSNETDIR}/sys \
|
|
-I${OSNETDIR}/include \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/head \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/common/ctf \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \
|
|
-I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
|
|
|
LIBDPLIBS+= z ${NETBSDSRCDIR}/lib/libz
|
|
|
|
.include <bsd.lib.mk>
|
|
|