mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
summary of changes, or for a more thorough overview: https://subversion.apache.org/docs/release-notes/1.14 NOTE: there is no need to dump and reload repositories, and the working copy format is still the same as Subversion 1.8 through 1.13. Relnotes: yes MFC after: 2 weeks X-MFC-With: r361677
70 lines
1 KiB
Makefile
70 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH: ${SVNDIR}/libsvn_client
|
|
|
|
INTERNALLIB= yes
|
|
LIB= svn_client
|
|
|
|
SRCS= add.c \
|
|
blame.c \
|
|
cat.c \
|
|
changelist.c \
|
|
checkout.c \
|
|
cleanup.c \
|
|
cmdline.c \
|
|
commit.c \
|
|
commit_util.c \
|
|
compat_providers.c \
|
|
conflicts.c \
|
|
copy.c \
|
|
ctx.c \
|
|
delete.c \
|
|
deprecated.c \
|
|
diff.c \
|
|
diff_local.c \
|
|
diff_summarize.c \
|
|
export.c \
|
|
externals.c \
|
|
import.c \
|
|
info.c \
|
|
iprops.c \
|
|
layout.c \
|
|
list.c \
|
|
locking_commands.c \
|
|
log.c \
|
|
merge.c \
|
|
merge_elements.c \
|
|
mergeinfo.c \
|
|
mtcc.c \
|
|
patch.c \
|
|
prop_commands.c \
|
|
ra.c \
|
|
relocate.c \
|
|
repos_diff.c \
|
|
resolved.c \
|
|
revert.c \
|
|
revisions.c \
|
|
shelf.c \
|
|
shelf2.c \
|
|
status.c \
|
|
switch.c \
|
|
update.c \
|
|
upgrade.c \
|
|
url.c \
|
|
util.c \
|
|
version.c \
|
|
wc_editor.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>
|