diff options
author | nik <nik@FreeBSD.org> | 1999-08-26 19:50:14 +0000 |
---|---|---|
committer | nik <nik@FreeBSD.org> | 1999-08-26 19:50:14 +0000 |
commit | c3f2c4e2a93c8e228753b6aa87dc19759d9724be (patch) | |
tree | ac75f62f9316f5b43bd790dabadb02c2c6c19a6f /release | |
parent | 17f618a95db1cd3b093782c68b3b799146d78f77 (diff) | |
download | FreeBSD-src-c3f2c4e2a93c8e228753b6aa87dc19759d9724be.zip FreeBSD-src-c3f2c4e2a93c8e228753b6aa87dc19759d9724be.tar.gz |
Handle the new Makefile infrastructure in the doc/ repository.
Set ALLLANG to install all the languages, otherwise set DOC_LANG
to just the languages (and encodings) you want to install.
Default to building the html-split (lots of small HTML files, with
links to go between them), html (one big honking HTML file), and plain
text versions of the documentation. Does not compress any of the docs
prior to doing the installation.
Testing and feedback: Jack O'Neill <jack@germanium.xtalwind.net>,
Cockups and typos: nik
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/release/Makefile b/release/Makefile index 029572f..cfc4246 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.502 1999/08/05 01:28:00 jkh Exp $ +# $Id: Makefile,v 1.503 1999/08/05 08:37:31 jkh Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -233,7 +233,7 @@ rerelease release: .if defined(ALLLANG) echo "export ALLLANG=${ALLLANG}" >> ${CHROOTDIR}/mk .else - echo "export DOC_LANG=en" >> ${CHROOTDIR}/mk + echo "export DOC_LANG=en_US.ISO_8859-1" >> ${CHROOTDIR}/mk .endif .if defined(NOSRC) echo "export NOSRC=${NOSRC}" >> ${CHROOTDIR}/mk @@ -594,7 +594,7 @@ doc.1: @for i in ${DOCPORTS}; do \ cd /usr/ports/$$i && make all install clean JADETEX=no FORCE_PKG_REGISTER=yes; \ done - @cd /usr/doc && make all distribute DISTDIR=${RD}/trees + @cd /usr/doc && make all install 'FORMATS=html html-split txt' INSTALL_COMPRESSED='' DOCDIR=${RD}/trees/bin/usr/share/doc touch doc.1 # Various "subroutine" and other supporting targets. |