23 lines
272 B
Makefile
23 lines
272 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
|
|
|
|
.include <bsd.subdir.mk>
|