# Copyright 2004,2006 Vladimir Prus # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) import quickbook ; project tools/build/doc ; boostbook userman : src/standalone.xml : toc.section.depth=1 doc.standalone=true nav.layout=none boost.root=. boost.graphics.root=images/ html.stylesheet=boostbook.css chunk.first.sections=0 admon.graphics=0 boost.defaults=Boost jam_docs jam_docs examples_docs examples_docs tools tools images callouts css logo ; xml jam_docs : bjam.qbk ; local examples = [ glob-tree-ex [ glob ../example/* ] : *.* : bin .DS_Store ] ; xml examples_docs : examples.qbk : $(examples) ; docbook tools : src/tools.adoc ; # HTML dependencies for standalone docs. install images : [ glob images/*.png ] : html/images ; explicit images ; install callouts : [ glob images/callouts/*.png ] : html/images/callouts ; explicit callouts ; install css : [ glob *.css ] : html ; explicit css ; install logo : [ glob *.png ] : html ; explicit logo ; ############################################################################### alias boostdoc : src/userman.xml : : : examples_docs examples_docs ; explicit boostdoc ; alias boostrelease ; explicit boostrelease ;