Jamfile.v2 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using quickbook ;
  2. #import os ;
  3. # Code snippet from Accumulators' Jamfile to copy the images.
  4. #
  5. IMAGES_DST = html/images/metaparse ;
  6. path-constant IMAGES : images ;
  7. actions copy-pngs
  8. {
  9. echo "Copying images of Metaparse documentation"
  10. mkdir -p $(IMAGES_DST)
  11. cp $(IMAGES)/*.png $(IMAGES_DST)
  12. echo "Images copied" > "$(<)"
  13. }
  14. make images_copied : metaparse.qbk : @copy-pngs ;
  15. xml metaparse : metaparse.qbk : <dependency>images_copied ;
  16. boostbook standalone
  17. :
  18. metaparse
  19. :
  20. <xsl:param>boost.root=../../../..
  21. <xsl:param>chapter.autolabel=0
  22. <xsl:param>chunk.section.depth=1
  23. <xsl:param>toc.section.depth=2
  24. <xsl:param>toc.max.depth=2
  25. <xsl:param>generate.section.toc.level=1
  26. ;
  27. install html : ../../../doc/src/boostbook.css ;
  28. install ../ : ../../../boost.png ;
  29. ###############################################################################
  30. alias boostdoc
  31. : metaparse
  32. :
  33. :
  34. : ;
  35. explicit boostdoc ;
  36. alias boostrelease ;
  37. explicit boostrelease ;