Jamfile 696 B

123456789101112131415161718192021222324252627
  1. # Copyright 2017 Peter Dimov
  2. #
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # (See accompanying file LICENSE_1_0.txt or copy at
  5. # http://www.boost.org/LICENSE_1_0.txt)
  6. import asciidoctor ;
  7. # import boostbook ;
  8. html assert.html : index.adoc ;
  9. # docbook assert.docbook : index.adoc ;
  10. # boostbook assert.html : assert.docbook : <format>onehtml ;
  11. install html_ : assert.html : <location>html ;
  12. pdf assert.pdf : index.adoc ;
  13. explicit assert.pdf ;
  14. install pdf_ : assert.pdf : <location>pdf ;
  15. explicit pdf_ ;
  16. ###############################################################################
  17. alias boostdoc ;
  18. explicit boostdoc ;
  19. alias boostrelease : html_ ;
  20. explicit boostrelease ;