Deleted Added
full compact
Makefile (195767) Makefile (204597)
1# $FreeBSD: head/cddl/lib/libctf/Makefile 195767 2009-07-19 17:25:24Z kensmith $
1# $FreeBSD: head/cddl/lib/libctf/Makefile 204597 2010-03-02 19:04:07Z uqs $
2
2
3.include "../../Makefile.inc"
3.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/common/ctf
4.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libctf/common
5.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/ctf
4
5LIB= ctf
6
7LIB= ctf
6SHLIB_MAJOR= 2
7
8SRCS= ctf_create.c \
9 ctf_decl.c \
10 ctf_error.c \
11 ctf_hash.c \
12 ctf_labels.c \
13 ctf_lib.c \
14 ctf_lookup.c \
15 ctf_open.c \
16 ctf_subr.c \
17 ctf_types.c \
18 ctf_util.c
19
8SRCS= ctf_create.c \
9 ctf_decl.c \
10 ctf_error.c \
11 ctf_hash.c \
12 ctf_labels.c \
13 ctf_lib.c \
14 ctf_lookup.c \
15 ctf_open.c \
16 ctf_subr.c \
17 ctf_types.c \
18 ctf_util.c
19
20.PATH: ${OPENSOLARIS_USR_DISTDIR}/common/ctf
21.PATH: ${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common
22.PATH: ${OPENSOLARIS_SYS_DISTDIR}/common/ctf
23
20WARNS?= 0
24CFLAGS+= -DCTF_OLD_VERSIONS
25
26CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \
27 -I${.CURDIR}/../../../cddl/compat/opensolaris/include \
28 -I${OPENSOLARIS_USR_DISTDIR}/head \
29 -I${OPENSOLARIS_USR_DISTDIR}/common/ctf \
30 -I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \
31 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
32
33.include <bsd.lib.mk>
34
21CFLAGS+= -DCTF_OLD_VERSIONS
22
23CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \
24 -I${.CURDIR}/../../../cddl/compat/opensolaris/include \
25 -I${OPENSOLARIS_USR_DISTDIR}/head \
26 -I${OPENSOLARIS_USR_DISTDIR}/common/ctf \
27 -I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \
28 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
29
30.include <bsd.lib.mk>
31