]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sbin/mksnap_ffs/Makefile
MFC r368207,368607:
[FreeBSD/stable/10.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>