mirror of
https://github.com/opnsense/src.git
synced 2026-03-08 00:01:54 -05:00
20 lines
262 B
Makefile
20 lines
262 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../mount
|
|
|
|
PROG= mksnap_ffs
|
|
SRCS= mksnap_ffs.c getmntopts.c
|
|
MAN= mksnap_ffs.8
|
|
|
|
WARNS?= 2
|
|
CFLAGS+=-I${.CURDIR}/../mount
|
|
|
|
.if defined(NOSUID)
|
|
BINMODE=550
|
|
.else
|
|
BINMODE=4550
|
|
BINOWN= root
|
|
.endif
|
|
BINGRP= operator
|
|
|
|
.include <bsd.prog.mk>
|