xref: /freebsd/sbin/mount_fusefs/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1.if defined(DEBUG)
2DEBUG_FLAGS+= -D_DEBUG -g
3.endif
4
5.if defined(DEBUG2G)
6DEBUG_FLAGS+= -D_DEBUG2G -g
7.endif
8
9.if defined(DEBUG3G)
10DEBUG_FLAGS+= -D_DEBUG3G -g
11.endif
12
13.if defined(DEBUG_MSG)
14DEBUG_FLAGS+= -D_DEBUG_MSG
15.endif
16
17.if defined(F4BVERS)
18DEBUG_FLAGS+= -DFUSE4BSD_VERSION="\"${F4BVERS}\""
19.endif
20
21PACKAGE=runtime
22PROG=	mount_fusefs
23SRCS=	mount_fusefs.c getmntopts.c
24MAN8=	mount_fusefs.8
25
26MOUNT=	${.CURDIR:H}/mount
27CFLAGS+=	-I${MOUNT}
28
29.PATH: ${MOUNT}
30
31.include <bsd.prog.mk>
32