]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sbin/mksnap_ffs/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sbin / mksnap_ffs / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/../mount
4
5 PROG=   mksnap_ffs
6 SRCS=   mksnap_ffs.c getmntopts.c
7 MAN=    mksnap_ffs.8
8
9 WARNS?= 2
10 CFLAGS+=-I${.CURDIR}/../mount
11
12 .if defined(NOSUID)
13 BINMODE=554
14 .else
15 BINMODE=4554
16 BINOWN= root
17 .endif
18 BINGRP= operator
19
20 .include <bsd.prog.mk>