Jamfile 481 B

123456789101112131415161718192021222324252627
  1. # Copyright 2019 Glen Joseph Fernandes
  2. # (glenjofe@gmail.com)
  3. #
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (http://www.boost.org/LICENSE_1_0.txt)
  6. import asciidoctor ;
  7. html endian.html : endian.adoc ;
  8. install html_ : endian.html : <location>html ;
  9. pdf endian.pdf : endian.adoc ;
  10. explicit endian.pdf ;
  11. install pdf_ : endian.pdf : <location>pdf ;
  12. explicit pdf_ ;
  13. alias boostdoc ;
  14. explicit boostdoc ;
  15. alias boostrelease : html_ ;
  16. explicit boostrelease ;