]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sbin/mount_fusefs/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sbin / mount_fusefs / Makefile
1 # $FreeBSD$
2
3 .if defined(DEBUG)
4 DEBUG_FLAGS+= -D_DEBUG -g
5 .endif
6
7 .if defined(DEBUG2G)
8 DEBUG_FLAGS+= -D_DEBUG2G -g
9 .endif
10
11 .if defined(DEBUG3G)
12 DEBUG_FLAGS+= -D_DEBUG3G -g
13 .endif
14
15 .if defined(DEBUG_MSG)
16 DEBUG_FLAGS+= -D_DEBUG_MSG
17 .endif
18
19 .if defined(F4BVERS)
20 DEBUG_FLAGS+= -DFUSE4BSD_VERSION="\"${F4BVERS}\""
21 .endif
22
23 PROG=   mount_fusefs
24 SRCS=   mount_fusefs.c getmntopts.c
25 MAN8=   mount_fusefs.8
26 NO_MANCOMPRESS?=        yes
27
28 MOUNT=  ${.CURDIR}/../mount
29 CFLAGS+=        -I${MOUNT}
30
31 .PATH: ${MOUNT}
32
33 .include <bsd.prog.mk>