freebsd-dev/cddl/lib/Makefile
Rui Paulo 0c0b3feeed The DTrace instrumentation object is going to be i386/amd64 only.
Sponsored by:	The FreeBSD Foundation
2010-08-21 11:09:03 +00:00

28 lines
379 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
_drti= drti
_libdtrace= libdtrace
.endif
.include <bsd.subdir.mk>