diff options
Diffstat (limited to 'usr.bin/svn/svnversion')
-rw-r--r-- | usr.bin/svn/svnversion/Makefile | 32 | ||||
-rw-r--r-- | usr.bin/svn/svnversion/Makefile.depend | 28 |
2 files changed, 60 insertions, 0 deletions
diff --git a/usr.bin/svn/svnversion/Makefile b/usr.bin/svn/svnversion/Makefile new file mode 100644 index 0000000..de59168 --- /dev/null +++ b/usr.bin/svn/svnversion/Makefile @@ -0,0 +1,32 @@ +# $FreeBSD$ + +MAN= + +.include "${.CURDIR}/../Makefile.inc" + +.PATH: ${SVNDIR}/svnversion + +PROG= svn${SVNLITE}version + +SRCS= svnversion.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_WCDIR} -lsvn_wc \ + -L${LIBSVN_DELTADIR} -lsvn_delta \ + -L${LIBSVN_DIFFDIR} -lsvn_diff \ + -L${LIBSVN_SUBRDIR} -lsvn_subr \ + -L${LIBAPR_UTILDIR} -lapr-util \ + -L${LIBAPRDIR} -lapr +LIBADD+= bsdxml sqlite3 z pthread + +DPADD= ${LIBSVN_WC} ${LIBSVN_DELTA} ${LIBSVN_DIFF} ${LIBSVN_SUBR} \ + ${LIBSERF} ${LIBAPR_UTIL} ${LIBAPR} + +.include <bsd.prog.mk> diff --git a/usr.bin/svn/svnversion/Makefile.depend b/usr.bin/svn/svnversion/Makefile.depend new file mode 100644 index 0000000..65b3e9a --- /dev/null +++ b/usr.bin/svn/svnversion/Makefile.depend @@ -0,0 +1,28 @@ +# $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/libsvn_delta \ + usr.bin/svn/lib/libsvn_diff \ + usr.bin/svn/lib/libsvn_subr \ + usr.bin/svn/lib/libsvn_wc \ + + +.include <dirdeps.mk> + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif |