diff --git a/en/doc/Makefile b/en/doc/Makefile index af2ed4d304..21e1067720 100644 --- a/en/doc/Makefile +++ b/en/doc/Makefile @@ -1,23 +1,25 @@ # -# $FreeBSD: www/en/doc/Makefile,v 1.3 2001/04/23 07:26:29 nik Exp $i +# $FreeBSD: www/en/doc/Makefile,v 1.4 2001/04/25 18:43:49 wosch Exp $i # # 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: (unset DESTDIR || true; cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} FORMATS=html-split\ html all) (unset DESTDIR || true; cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} FORMATS=html-split\ html DOCDIR=${.CURDIR} install) install clean: (unset DESTDIR || true; cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} FORMATS=html-split\ html DOCDIR=${DESTDIR}/data/doc ${.TARGET}) .if make(clean) rm -rf en* handbook faq .endif obj: cd ${.CURDIR}/../../../doc/en_US.ISO_8859-1 && ${MAKE} ${.TARGET} + +.include "${.CURDIR}/../../share/mk/web.site.mk"