mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 03:13:02 -05:00
33 lines
543 B
Makefile
33 lines
543 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH: ${SVNDIR}/libsvn_diff
|
|
|
|
INTERNALLIB= yes
|
|
LIB= svn_diff
|
|
|
|
SRCS= binary_diff.c \
|
|
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>
|