mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
15 lines
161 B
Makefile
15 lines
161 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
PROG= mksnap_ffs
|
||
|
|
MAN= mksnap_ffs.8
|
||
|
|
|
||
|
|
.if defined(NOSUID)
|
||
|
|
BINMODE=550
|
||
|
|
.else
|
||
|
|
BINMODE=4550
|
||
|
|
BINOWN= root
|
||
|
|
.endif
|
||
|
|
BINGRP= operator
|
||
|
|
|
||
|
|
.include <bsd.prog.mk>
|