33c1ce3b72
Subversion builds and links against its own .a archives using local rules, so did not benefit from with the WITH_PIE library support added in r344179. Apply the same _pie suffix locally. Reviewed by: cem Differential Revision: https://reviews.freebsd.org/D19246
49 lines
1.6 KiB
Makefile
49 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
MAN=
|
|
|
|
.include "${.CURDIR:H}/Makefile.inc"
|
|
|
|
.PATH: ${SVNDIR}/svnbench
|
|
|
|
PROG= svn${SVNLITE}bench
|
|
|
|
SRCS= help-cmd.c notify.c null-blame-cmd.c null-export-cmd.c \
|
|
null-info-cmd.c null-list-cmd.c null-log-cmd.c svnbench.c util.c
|
|
|
|
CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR:H} \
|
|
-I${.CURDIR:H}/lib/libapr \
|
|
-I${APR}/include/arch/unix \
|
|
-I${APR}/include \
|
|
-I${.CURDIR:H}/lib/libapr_util \
|
|
-I${APRU}/include/private \
|
|
-I${APRU}/include
|
|
|
|
LDADD= -L${LIBSVN_CLIENTDIR} -lsvn_client${PIE_SUFFIX} \
|
|
-L${LIBSVN_WCDIR} -lsvn_wc${PIE_SUFFIX} \
|
|
-L${LIBSVN_RADIR} -lsvn_ra${PIE_SUFFIX} \
|
|
-L${LIBSVN_RA_LOCALDIR} -lsvn_ra_local${PIE_SUFFIX} \
|
|
-L${LIBSVN_RA_SVNDIR} -lsvn_ra_svn${PIE_SUFFIX} \
|
|
-L${LIBSVN_RA_SERFDIR} -lsvn_ra_serf${PIE_SUFFIX} \
|
|
-L${LIBSVN_REPOSDIR} -lsvn_repos${PIE_SUFFIX} \
|
|
-L${LIBSVN_FSDIR} -lsvn_fs${PIE_SUFFIX} \
|
|
-L${LIBSVN_FS_FSDIR} -lsvn_fs_fs${PIE_SUFFIX} \
|
|
-L${LIBSVN_FS_XDIR} -lsvn_fs_x${PIE_SUFFIX} \
|
|
-L${LIBSVN_FS_UTILDIR} -lsvn_fs_util${PIE_SUFFIX} \
|
|
-L${LIBSVN_DELTADIR} -lsvn_delta${PIE_SUFFIX} \
|
|
-L${LIBSVN_DIFFDIR} -lsvn_diff${PIE_SUFFIX} \
|
|
-L${LIBSVN_SUBRDIR} -lsvn_subr${PIE_SUFFIX} \
|
|
-L${LIBSERFDIR} -lserf${PIE_SUFFIX} \
|
|
-L${LIBAPR_UTILDIR} -lapr-util${PIE_SUFFIX} \
|
|
-L${LIBAPRDIR} -lapr${PIE_SUFFIX}
|
|
|
|
LIBADD+= bsdxml sqlite3 z magic crypto ssl pthread
|
|
|
|
DPADD= ${LIBSVN_CLIENT} ${LIBSVN_WC} ${LIBSVN_RA} ${LIBSVN_RA_LOCAL} \
|
|
${LIBSVN_RA_SVN} ${LIBSVN_RA_SERF} ${LIBSVN_REPOS} \
|
|
${LIBSVN_FS} ${LIBSVN_FS_FS} ${LIBSVN_FS_UTIL} ${LIBSVN_DELTA} \
|
|
${LIBSVN_DIFF} ${LIBSVN_SUBR} ${LIBSERF} ${LIBAPR_UTIL} \
|
|
${LIBAPR}
|
|
|
|
.include <bsd.prog.mk>
|