blob: dea7c1f9eaef385932ffbdfe74a97501e822db89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.10 2018/05/28 21:05:09 chs Exp $
# $FreeBSD: head/cddl/lib/libctf/Makefile 314654 2017-03-04 11:30:04Z ngie $
.include <bsd.init.mk>
LIB= ctf
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
MAN= ctf.5
.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>
|