Makefile revision 256281
1# $FreeBSD: stable/10/sbin/mksnap_ffs/Makefile 198236 2009-10-19 16:00:24Z ru $
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=550
14.else
15BINMODE=4550
16BINOWN=	root
17.endif
18BINGRP=	operator
19
20.include <bsd.prog.mk>
21