aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/fstat/Makefile
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@FreeBSD.org>2007-11-05 23:15:03 +0000
committerUlf Lilleengen <lulf@FreeBSD.org>2007-11-05 23:15:03 +0000
commiteec1c21f61d3ac9c73561a02bb7cb012743b1f7a (patch)
tree639546011208282d6741e048c1d3015db81b7061 /usr.bin/fstat/Makefile
parentcdc162fe0e0b5c74a5d55234548d1d8f5bfb3939 (diff)
Notes
Diffstat (limited to 'usr.bin/fstat/Makefile')
-rw-r--r--usr.bin/fstat/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/usr.bin/fstat/Makefile b/usr.bin/fstat/Makefile
index 8ca57b992bc82..baff3ebf922b0 100644
--- a/usr.bin/fstat/Makefile
+++ b/usr.bin/fstat/Makefile
@@ -1,6 +1,8 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
+.include <bsd.own.mk>
+
PROG= fstat
SRCS= cd9660.c fstat.c msdosfs.c
DPADD= ${LIBKVM}
@@ -11,4 +13,11 @@ WARNS?= 6
CFLAGS+=-D_KVM_VNODE
+.if ${MK_CDDL} != "no"
+CFLAGS+= -DZFS
+OBJS+= zfs/zfs.o
+SUBDIR= zfs
+zfs/zfs.o: zfs
+.endif
+
.include <bsd.prog.mk>