mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-25 11:37:56 +00:00
16 lines
193 B
Makefile
16 lines
193 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
.include <bsd.own.mk>
|
||
|
|
||
|
.if ${MK_ZFS} != "no"
|
||
|
SUBDIR= ${_ztest}
|
||
|
.endif
|
||
|
|
||
|
.if ${MACHINE_ARCH} == "i386"
|
||
|
.if ${MACHINE} == "i386"
|
||
|
_ztest= ztest
|
||
|
.endif
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.subdir.mk>
|