freebsd-skq/sbin/mksnap_ffs/Makefile
ngie 3c4b37d990 sbin: normalize paths using SRCTOP-relative paths or :H when possible
This simplifies make logic/output

MFC after:	1 month
Sponsored by:	Dell EMC Isilon
2017-03-04 11:33:01 +00:00

22 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>