a7ffc94849
It's not really useful in a jail or in a mdroot or even if a users wants to do a full zfs machine. Reviewed by: mckusick Differential Revision: https://reviews.freebsd.org/D36227
22 lines
272 B
Makefile
22 lines
272 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}/mount
|
|
|
|
PACKAGE=ufs
|
|
PROG= mksnap_ffs
|
|
SRCS= mksnap_ffs.c getmntopts.c
|
|
MAN= mksnap_ffs.8
|
|
|
|
WARNS?= 2
|
|
CFLAGS+=-I${.CURDIR:H}/mount
|
|
|
|
.if defined(NOSUID)
|
|
BINMODE=554
|
|
.else
|
|
BINMODE=4554
|
|
BINOWN= root
|
|
.endif
|
|
BINGRP= operator
|
|
|
|
.include <bsd.prog.mk>
|