Makefile revision 210693
1# $FreeBSD: head/cddl/lib/Makefile 210693 2010-07-31 17:13:14Z rpaulo $
2
3.include <bsd.own.mk>
4
5SUBDIR=	drti \
6	libavl \
7	libctf \
8	${_libdtrace} \
9	libnvpair \
10	libumem \
11	libuutil \
12	${_libzfs} \
13	${_libzpool}
14
15.if ${MK_ZFS} != "no"
16_libzfs=	libzfs
17.if ${MK_LIBTHR} != "no"
18_libzpool=	libzpool
19.endif
20.endif
21
22.if ${MACHINE_ARCH} == amd64 || ${MACHINE_ARCH} == i386
23_libdtrace=	libdtrace
24.endif
25
26.include <bsd.subdir.mk>
27