Makefile revision 362181
1# $FreeBSD: stable/11/usr.bin/svn/lib/libsvn_ra/Makefile 362181 2020-06-14 18:49:06Z dim $
2
3.include "${.CURDIR}/../Makefile.inc"
4
5.PATH:	${SVNDIR}/libsvn_ra
6
7INTERNALLIB=	yes
8LIB=		svn_ra
9
10SRCS=		compat.c \
11		debug_reporter.c \
12		deprecated.c \
13		editor.c \
14		ra_loader.c \
15		util.c
16
17CFLAGS+=	-I${SVNDIR}/include \
18		-I${SVNDIR} \
19		-I${.CURDIR}/../.. \
20		-I${.CURDIR}/../libapr \
21		-I${APR}/include/arch/unix \
22		-I${APR}/include \
23		-I${.CURDIR}/../libapr_util \
24		-I${APRU}/include/private \
25		-I${APRU}/include
26
27.include <bsd.lib.mk>
28