1 2.include "${.CURDIR}/../Makefile.inc" 3 4.PATH: ${SVNDIR}/libsvn_diff 5 6INTERNALLIB= yes 7LIB= svn_diff 8 9SRCS= binary_diff.c \ 10 deprecated.c \ 11 diff.c \ 12 diff3.c \ 13 diff4.c \ 14 diff_file.c \ 15 diff_memory.c \ 16 diff_tree.c \ 17 lcs.c \ 18 parse-diff.c \ 19 token.c \ 20 util.c 21 22CFLAGS+= -I${SVNDIR}/include \ 23 -I${SVNDIR} \ 24 -I${.CURDIR}/../.. \ 25 -I${.CURDIR}/../libapr \ 26 -I${APR}/include/arch/unix \ 27 -I${APR}/include \ 28 -I${.CURDIR}/../libapr_util \ 29 -I${APRU}/include/private \ 30 -I${APRU}/include 31 32.include <bsd.lib.mk> 33