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