diff options
Diffstat (limited to 'cddl/usr.sbin/Makefile')
-rw-r--r-- | cddl/usr.sbin/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cddl/usr.sbin/Makefile b/cddl/usr.sbin/Makefile new file mode 100644 index 0000000..7b11900 --- /dev/null +++ b/cddl/usr.sbin/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +SUBDIR= +.if ${MK_ZFS} != "no" +SUBDIR+=${_zdb} +.endif + +.if ${MACHINE_ARCH} == "i386" +.if ${MACHINE} == "i386" +_zdb= zdb +.endif +.endif + +.include <bsd.subdir.mk> |