summaryrefslogtreecommitdiff
path: root/lib/librefuse/Makefile
blob: 491c1e9ab3b0f3a87459a0241170b35044df1156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $NetBSD: Makefile,v 1.16 2022/01/22 08:02:49 pho Exp $

USE_FORT?=	yes	# data driven bugs?

LIB=		refuse
LIBDPLIBS+=	puffs	${.CURDIR}/../libpuffs		\
		pthread	${.CURDIR}/../libpthread

.ifdef DEBUG
FUSE_OPT_DEBUG_FLAGS=	-g -DFUSE_OPT_DEBUG
.endif

CFLAGS+=	${FUSE_OPT_DEBUG_FLAGS}
CPPFLAGS+=	-I${.CURDIR}
SRCS=		refuse.c refuse_compat.c refuse_log.c refuse_lowlevel.c
SRCS+=		refuse_opt.c refuse_signals.c
MAN=		refuse.3
WARNS?=		6
INCS=           fuse.h fuse_opt.h fuse_log.h fuse_lowlevel.h
INCSDIR=        /usr/include

.include "${.CURDIR}/refuse/Makefile.inc"

.include <bsd.lib.mk>