mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 15:26:43 +01:00
34 lines
501 B
Makefile
34 lines
501 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
|
||
|
|
||
|
PROG= mount_fusefs
|
||
|
SRCS= mount_fusefs.c getmntopts.c
|
||
|
MAN8= mount_fusefs.8
|
||
|
NO_MANCOMPRESS?= yes
|
||
|
|
||
|
MOUNT= ${.CURDIR}/../mount
|
||
|
CFLAGS+= -I${MOUNT}
|
||
|
|
||
|
.PATH: ${MOUNT}
|
||
|
|
||
|
.include <bsd.prog.mk>
|