diff options
Diffstat (limited to 'usr.bin/svn/svnserve')
-rw-r--r-- | usr.bin/svn/svnserve/Makefile | 42 | ||||
-rw-r--r-- | usr.bin/svn/svnserve/Makefile.depend | 36 |
2 files changed, 78 insertions, 0 deletions
diff --git a/usr.bin/svn/svnserve/Makefile b/usr.bin/svn/svnserve/Makefile new file mode 100644 index 0000000..4b79cf4 --- /dev/null +++ b/usr.bin/svn/svnserve/Makefile @@ -0,0 +1,42 @@ +# $FreeBSD$ + +MAN= + +.include "${.CURDIR}/../Makefile.inc" + +.PATH: ${SVNDIR}/svnserve + +PROG= svn${SVNLITE}serve + +SRCS= cyrus_auth.c log-escape.c logger.c serve.c svnserve.c winservice.c + +CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/.. \ + -I${.CURDIR}/../lib/libapr \ + -I${APR}/include/arch/unix \ + -I${APR}/include \ + -I${.CURDIR}/../lib/libapr_util \ + -I${APRU}/include/private \ + -I${APRU}/include + +LDADD= -L${LIBSVN_RADIR} -lsvn_ra \ + -L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local \ + -L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn \ + -L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf \ + -L${LIBSVN_REPOSDIR} -lsvn_repos \ + -L${LIBSVN_FSDIR} -lsvn_fs \ + -L${LIBSVN_FS_FSDIR} -lsvn_fs_fs \ + -L${LIBSVN_FS_XDIR} -lsvn_fs_x \ + -L${LIBSVN_FS_UTILDIR} -lsvn_fs_util \ + -L${LIBSVN_DELTADIR} -lsvn_delta \ + -L${LIBSVN_SUBRDIR} -lsvn_subr \ + -L${LIBSERFDIR} -lserf \ + -L${LIBAPR_UTILDIR} -lapr-util \ + -L${LIBAPRDIR} -lapr +LIBADD= bsdxml sqlite3 z pthread + +DPADD= ${LIBSVN_RA} ${LIBSVN_RA_LOCAL} ${LIBSVN_RA_SVN} ${LIBSVN_RA_SERF} \ + ${LIBSVN_REPOS} ${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} \ + ${LIBSVN_DELTA} ${LIBSVN_SUBR} ${LIBSERF} ${LIBAPR_UTIL} \ + ${LIBAPR} + +.include <bsd.prog.mk> diff --git a/usr.bin/svn/svnserve/Makefile.depend b/usr.bin/svn/svnserve/Makefile.depend new file mode 100644 index 0000000..edbca2e --- /dev/null +++ b/usr.bin/svn/svnserve/Makefile.depend @@ -0,0 +1,36 @@ +# $FreeBSD$ +# Autogenerated - do NOT edit! + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libexpat \ + lib/libsqlite3 \ + lib/libthr \ + lib/libz \ + usr.bin/svn/lib/libapr \ + usr.bin/svn/lib/libapr_util \ + usr.bin/svn/lib/libserf \ + usr.bin/svn/lib/libsvn_delta \ + usr.bin/svn/lib/libsvn_fs \ + usr.bin/svn/lib/libsvn_fs_fs \ + usr.bin/svn/lib/libsvn_fs_util \ + usr.bin/svn/lib/libsvn_fs_x \ + usr.bin/svn/lib/libsvn_ra \ + usr.bin/svn/lib/libsvn_ra_local \ + usr.bin/svn/lib/libsvn_ra_serf \ + usr.bin/svn/lib/libsvn_ra_svn \ + usr.bin/svn/lib/libsvn_repos \ + usr.bin/svn/lib/libsvn_subr \ + + +.include <dirdeps.mk> + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif |