diff options
Diffstat (limited to 'usr.bin/svn/lib/libsvn_diff')
-rw-r--r-- | usr.bin/svn/lib/libsvn_diff/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/usr.bin/svn/lib/libsvn_diff/Makefile b/usr.bin/svn/lib/libsvn_diff/Makefile new file mode 100644 index 0000000..54ff3f2 --- /dev/null +++ b/usr.bin/svn/lib/libsvn_diff/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +.include "${.CURDIR}/../Makefile.inc" + +.PATH: ${SVNDIR}/libsvn_diff + +INTERNALLIB= yes +LIB= svn_diff + +SRCS= deprecated.c diff.c diff3.c diff4.c diff_file.c diff_memory.c \ + diff_tree.c lcs.c parse-diff.c token.c util.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> + |