Phase 1: Switch to new-style setup of FAQ/handbook (.../doc/de_DE.ISO8859-1) Changes to includes and availability were neccessary because of the changes made in the framework since the last update, the web site would not build otherwise. Reviewed by: -doc, Silence on -www
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
#
|
|
# $FreeBSD$
|
|
# $FreeBSDde: de-www/doc/Makefile,v 1.1 2002/12/02 05:35:13 ue Exp $
|
|
# basiert auf: 1.8
|
|
#
|
|
# Build the FreeBSD documentation *outside* of the www tree, and install it
|
|
# in to the right place as necessary.
|
|
#
|
|
# This assumes that you have the www/ and doc/ trees checked out beside
|
|
# one another -- this was always the case anyway, so there are no extra
|
|
# requirements here.
|
|
#
|
|
|
|
all: all-all all-install
|
|
|
|
all-all:
|
|
@unset DESTDIR || true; \
|
|
cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
|
|
${MAKE} FORMATS="html-split html" \
|
|
INSTALL_COMPRESSED= all
|
|
all-install:
|
|
@unset DESTDIR || true; \
|
|
cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
|
|
${MAKE} FORMATS="html-split html" DOCDIR=${.OBJDIR} \
|
|
INSTALL_COMPRESSED= install
|
|
all-pgpkeyring:
|
|
@unset DESTDIR || true; \
|
|
cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1/books/handbook; \
|
|
${MAKE} \
|
|
pgpkeyring > ${.OBJDIR}/pgpkeyring.txt
|
|
|
|
install clean:
|
|
@unset DESTDIR || true; \
|
|
cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
|
|
${MAKE} FORMATS="html-split html" DOCDIR=${DESTDIR}/data/doc \
|
|
INSTALL_COMPRESSED= ${.TARGET}
|
|
#.if make(install)
|
|
# @unset DESTDIR || true; \
|
|
# cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1/books/handbook; \
|
|
# ${MAKE} \
|
|
# pgpkeyring > ${DESTDIR}/data/doc/pgpkeyring.txt
|
|
#.endif
|
|
.if make(clean)
|
|
${RM} -rf de* handbook faq
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../share/mk/web.site.mk"
|
|
|
|
obj: _OBJUSE
|
|
|
|
_OBJUSE: .USE
|
|
@unset DESTDIR || true; \
|
|
cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
|
|
${MAKE} ${.TARGET}
|