* Use make variables instead of hard coding commands, paths, and options. * Wrap some long lines. * Replace shell loops with make for loops, etc. PR: docs/31132 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
27 lines
770 B
Makefile
27 lines
770 B
Makefile
#
|
|
# $FreeBSD: www/en/FAQ/Makefile,v 1.6 2001/06/11 02:38:58 ache Exp $
|
|
#
|
|
# Build the FreeBSD FAQ *outside* of the www tree, and install it
|
|
# in to the right place as necessary.
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
# At build time, we have to link to the doc/ directory at the same level
|
|
# as the www/ tree.
|
|
all:
|
|
${LN} -fs ${.OBJDIR}/../../../doc/en_US.ISO8859-1/books/faq/* .
|
|
|
|
# At install time the www/en/doc/ directory has been populated, so we can
|
|
# link in to there instead.
|
|
install:
|
|
[ -d ${DOCINSTALLDIR} ] || ${MKDIR} ${DOCINSTALLDIR}
|
|
cd ${DOCINSTALLDIR}; \
|
|
${LN} -fs ../doc/en_US.ISO8859-1/books/faq/* ${DOCINSTALLDIR}
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
|
|