mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
bcf72246c5
system was configured without such support. Approved by: re (kensmith)
20 lines
269 B
Makefile
20 lines
269 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= libavl \
|
|
libnvpair \
|
|
libumem \
|
|
libuutil \
|
|
${_libzfs} \
|
|
${_libzpool}
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
_libzfs= libzfs
|
|
.if ${MK_LIBTHR} != "no" || ${MK_LIBPTHREAD} != "no"
|
|
_libzpool= libzpool
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|