Jamfile.v2 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com>
  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. import boostbook ;
  6. import quickbook ;
  7. xml bind_ : bind.qbk ;
  8. boostbook standalone_bind
  9. :
  10. bind_
  11. :
  12. <xsl:param>boost.root=../../../..
  13. # File name of HTML output:
  14. <xsl:param>root.filename=bind
  15. # How far down we chunk nested sections, basically all of them:
  16. <xsl:param>chunk.section.depth=0
  17. # Don't put the first section on the same page as the TOC:
  18. <xsl:param>chunk.first.sections=0
  19. # How far down sections get TOC's
  20. <xsl:param>toc.section.depth=2
  21. # Max depth in each TOC:
  22. <xsl:param>toc.max.depth=2
  23. # How far down we go with TOC's
  24. <xsl:param>generate.section.toc.level=0
  25. <xsl:param>generate.manifest=0
  26. ;
  27. xml mem_fn_ : mem_fn.qbk ;
  28. boostbook standalone_mem_fn
  29. :
  30. mem_fn_
  31. :
  32. <xsl:param>boost.root=../../../..
  33. # File name of HTML output:
  34. <xsl:param>root.filename=mem_fn
  35. # How far down we chunk nested sections, basically all of them:
  36. <xsl:param>chunk.section.depth=0
  37. # Don't put the first section on the same page as the TOC:
  38. <xsl:param>chunk.first.sections=0
  39. # How far down sections get TOC's
  40. <xsl:param>toc.section.depth=2
  41. # Max depth in each TOC:
  42. <xsl:param>toc.max.depth=2
  43. # How far down we go with TOC's
  44. <xsl:param>generate.section.toc.level=0
  45. <xsl:param>generate.manifest=0
  46. ;
  47. ###############################################################################
  48. alias boostdoc ;
  49. explicit boostdoc ;
  50. alias boostrelease : standalone_bind standalone_mem_fn ;
  51. explicit boostrelease ;