Jamfile.v2 995 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Boost.Atomic library documentation Jamfile
  2. #
  3. # Copyright Helge Bahmann 2011.
  4. # Copyright Tim Blechmann 2012.
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. import quickbook ;
  9. import boostbook : boostbook ;
  10. xml atomic : atomic.qbk ;
  11. boostbook standalone
  12. : atomic
  13. : <xsl:param>boost.root=../../../..
  14. <xsl:param>boost.libraries=../../../libraries.htm
  15. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/atomic/doc/html
  16. ;
  17. install css : [ glob $(BOOST_ROOT)/doc/src/*.css ]
  18. : <location>html ;
  19. install images : [ glob $(BOOST_ROOT)/doc/src/images/*.png ]
  20. : <location>html/images ;
  21. explicit css ;
  22. explicit images ;
  23. ###############################################################################
  24. alias boostdoc
  25. : atomic
  26. :
  27. :
  28. : ;
  29. explicit boostdoc ;
  30. alias boostrelease ;
  31. explicit boostrelease ;