freebsd-nq/cddl/lib/Makefile
Rui Paulo fd14f3b4a9 libdtrace, dtrace(1) and lockstat(1) are for i386 and amd64 only right
now.

Sponsored by:	The FreeBSD Foundation
2010-07-31 17:13:14 +00:00

27 lines
362 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
SUBDIR= drti \
libavl \
libctf \
${_libdtrace} \
libnvpair \
libumem \
libuutil \
${_libzfs} \
${_libzpool}
.if ${MK_ZFS} != "no"
_libzfs= libzfs
.if ${MK_LIBTHR} != "no"
_libzpool= libzpool
.endif
.endif
.if ${MACHINE_ARCH} == amd64 || ${MACHINE_ARCH} == i386
_libdtrace= libdtrace
.endif
.include <bsd.subdir.mk>