Fix build: Use our own targets since the real ones have funky dependencies

which would like autoreconf.
This commit is contained in:
Volker Stolz 2005-11-10 13:36:36 +00:00
parent b513a48231
commit 6490335f3d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=147831

View File

@ -48,4 +48,14 @@ post-patch:
/^install :: install_guide/d' \
${WRKSRC}/src/MkInstal.in
do-build:
. for dir in src libraries docs
cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}
. endfor
do-install:
. for dir in src libraries demos docs
cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}
. endfor
.include <bsd.port.post.mk>