]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/mksnap_ffs/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.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=550
14 .else
15 BINMODE=4550
16 BINOWN= root
17 .endif
18 BINGRP= operator
19
20 .include <bsd.prog.mk>