]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_fusefs/Makefile
Merge libxo 0.4.6
[FreeBSD/FreeBSD.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
27 MOUNT=  ${.CURDIR}/../mount
28 CFLAGS+=        -I${MOUNT}
29
30 .PATH: ${MOUNT}
31
32 .include <bsd.prog.mk>