freebsd-dev/sbin/mount_fusefs/Makefile
Enji Cooper 22289a8c3d 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

34 lines
495 B
Makefile

# $FreeBSD$
.if defined(DEBUG)
DEBUG_FLAGS+= -D_DEBUG -g
.endif
.if defined(DEBUG2G)
DEBUG_FLAGS+= -D_DEBUG2G -g
.endif
.if defined(DEBUG3G)
DEBUG_FLAGS+= -D_DEBUG3G -g
.endif
.if defined(DEBUG_MSG)
DEBUG_FLAGS+= -D_DEBUG_MSG
.endif
.if defined(F4BVERS)
DEBUG_FLAGS+= -DFUSE4BSD_VERSION="\"${F4BVERS}\""
.endif
PACKAGE=runtime
PROG= mount_fusefs
SRCS= mount_fusefs.c getmntopts.c
MAN8= mount_fusefs.8
MOUNT= ${.CURDIR:H}/mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
.include <bsd.prog.mk>