blob: d4b06d2b59db1df9c82f511f943a449372c548b4 (
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
|
# $FreeBSD$
.include "${.CURDIR}/../Makefile.inc"
.PATH: ${SVNDIR}/libsvn_fs_x
INTERNALLIB= yes
LIB= svn_fs_x
SRCS= cached_data.c caching.c changes.c dag.c fs.c fs_id.c fs_x.c \
hotcopy.c id.c index.c lock.c low_level.c noderevs.c pack.c \
recovery.c rep-cache.c reps.c rev_file.c revprops.c \
string_table.c temp_serializer.c transaction.c tree.c \
util.c verify.c
CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \
-I${.CURDIR}/../libapr \
-I${APR}/include/arch/unix \
-I${APR}/include \
-I${.CURDIR}/../libapr_util \
-I${APRU}/include/private \
-I${APRU}/include
.include <bsd.lib.mk>
|