blob: 5be164495be9492a3331cf2521f8a57f8bad0f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $FreeBSD$
.include "${.CURDIR}/../Makefile.inc"
.PATH: ${SVNDIR}/libsvn_delta
INTERNALLIB= yes
LIB= svn_delta
SRCS= cancel.c compat.c compose_delta.c debug_editor.c \
default_editor.c deprecated.c depth_filter_editor.c editor.c \
path_driver.c svndiff.c text_delta.c version.c xdelta.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>
|