Jamfile 596 B

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