Jamfile 595 B

1234567891011121314151617181920212223
  1. # Copyright 2017, 2018 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. html variant2.html : variant2.adoc ;
  8. install html_ : variant2.html : <location>html ;
  9. pdf variant2.pdf : variant2.adoc ;
  10. explicit variant2.pdf ;
  11. install pdf_ : variant2.pdf : <location>pdf ;
  12. explicit pdf_ ;
  13. ###############################################################################
  14. alias boostdoc ;
  15. explicit boostdoc ;
  16. alias boostrelease : html_ ;
  17. explicit boostrelease ;