xref: /freebsd/sbin/mount_fusefs/Makefile (revision cda23fc36d22bfa9d57d1a57c0daaeeb86bac94f)
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
23MAN8=	mount_fusefs.8
24LIBADD=	util
25
26.include <bsd.prog.mk>
27