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