blob: 0af8a80c8c99f5fed21bb2369e3d9b3756a358de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $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>
|