10b9d77bf1
Few new things available from now on: - Data deduplication. - Triple parity RAIDZ (RAIDZ3). - zfs diff. - zpool split. - Snapshot holds. - zpool import -F. Allows to rewind corrupted pool to earlier transaction group. - Possibility to import pool in read-only mode. MFC after: 1 month
25 lines
313 B
Makefile
25 lines
313 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= \
|
|
ctfconvert \
|
|
ctfdump \
|
|
ctfmerge \
|
|
sgsmsg \
|
|
${_zinject} \
|
|
${_zlook} \
|
|
${_zstreamdump} \
|
|
${_ztest}
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
_zinject= zinject
|
|
#_zlook= zlook
|
|
.if ${MK_LIBTHR} != "no"
|
|
_ztest= ztest
|
|
_zstreamdump = zstreamdump
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|