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 23PROG= mount_fusefs 24SRCS= mount_fusefs.c getmntopts.c 25MAN8= mount_fusefs.8 26 27MOUNT= ${.CURDIR}/../mount 28CFLAGS+= -I${MOUNT} 29 30.PATH: ${MOUNT} 31 32.include <bsd.prog.mk> 33