mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 16:35:27 -04:00
21 lines
276 B
Makefile
21 lines
276 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}/mount
|
|
|
|
PACKAGE=runtime
|
|
PROG= mksnap_ffs
|
|
SRCS= mksnap_ffs.c getmntopts.c
|
|
MAN= mksnap_ffs.8
|
|
|
|
WARNS?= 2
|
|
CFLAGS+=-I${.CURDIR:H}/mount
|
|
|
|
.if defined(NOSUID)
|
|
BINMODE=554
|
|
.else
|
|
BINMODE=4554
|
|
BINOWN= root
|
|
.endif
|
|
BINGRP= operator
|
|
|
|
.include <bsd.prog.mk>
|