build.jam 975 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Copyright Rene Rivera 2016
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. using quickbook ;
  6. using boostbook ;
  7. xml detail : detail.qbk ;
  8. install images : [ glob $(BOOST_ROOT)/doc/src/images/*.png ] : <location>html/images ;
  9. explicit images ;
  10. install callouts : [ glob $(BOOST_ROOT)/doc/src/images/callouts/*.png ] : <location>html/images/callouts ;
  11. explicit callouts ;
  12. install css : [ glob $(BOOST_ROOT)/doc/src/*.css ] : <location>html ;
  13. explicit css ;
  14. boostbook standalone
  15. :
  16. detail
  17. :
  18. <xsl:param>boost.root=../../../..
  19. <xsl:param>generate.section.toc.level=3
  20. <xsl:param>chunk.section.depth=2
  21. #<xsl:param>chunk.first.sections=1
  22. <dependency>images
  23. <dependency>callouts
  24. <dependency>css
  25. ;
  26. alias boostdoc ;
  27. explicit boostdoc ;
  28. alias boostrelease : standalone ;
  29. explicit boostrelease ;