1# $FreeBSD: stable/11/usr.bin/svn/lib/libsvn_fs_x/Makefile 362181 2020-06-14 18:49:06Z dim $
2
3.include "${.CURDIR}/../Makefile.inc"
4
5.PATH:	${SVNDIR}/libsvn_fs_x
6
7INTERNALLIB=	yes
8LIB=		svn_fs_x
9
10SRCS=		batch_fsync.c \
11		cached_data.c \
12		caching.c \
13		changes.c \
14		dag.c \
15		dag_cache.c \
16		fs.c \
17		fs_id.c \
18		fs_x.c \
19		hotcopy.c \
20		id.c \
21		index.c \
22		lock.c \
23		low_level.c \
24		noderevs.c \
25		pack.c \
26		recovery.c \
27		rep-cache.c \
28		reps.c \
29		rev_file.c \
30		revprops.c \
31		string_table.c \
32		temp_serializer.c \
33		transaction.c \
34		tree.c \
35		util.c \
36		verify.c
37
38CFLAGS+=	-I${SVNDIR}/include \
39		-I${SVNDIR} \
40		-I${.CURDIR}/../.. \
41		-I${.CURDIR}/../libapr \
42		-I${APR}/include/arch/unix \
43		-I${APR}/include \
44		-I${.CURDIR}/../libapr_util \
45		-I${APRU}/include/private \
46		-I${APRU}/include
47
48.include <bsd.lib.mk>
49