Makefile revision 271075
1# $FreeBSD: stable/10/sbin/mksnap_ffs/Makefile 271075 2014-09-04 01:38:31Z neel $
2
3.PATH:	${.CURDIR}/../mount
4
5PROG=	mksnap_ffs
6SRCS=	mksnap_ffs.c getmntopts.c
7MAN=	mksnap_ffs.8
8
9WARNS?=	2
10CFLAGS+=-I${.CURDIR}/../mount
11
12.if defined(NOSUID)
13BINMODE=554
14.else
15BINMODE=4554
16BINOWN=	root
17.endif
18BINGRP=	operator
19
20.include <bsd.prog.mk>
21