Jamfile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 mp11.html : mp11.adoc ;
  9. html simple_cxx11_metaprogramming.html :
  10. article/simple_cxx11_metaprogramming.adoc ;
  11. html simple_cxx11_metaprogramming_2.html :
  12. article/simple_cxx11_metaprogramming_2.adoc ;
  13. install html_ :
  14. mp11.html
  15. simple_cxx11_metaprogramming.html
  16. simple_cxx11_metaprogramming_2.html :
  17. <location>html ;
  18. pdf mp11.pdf : mp11.adoc ;
  19. pdf simple_cxx11_metaprogramming.pdf :
  20. article/simple_cxx11_metaprogramming.adoc ;
  21. pdf simple_cxx11_metaprogramming_2.pdf :
  22. article/simple_cxx11_metaprogramming_2.adoc ;
  23. explicit mp11.pdf
  24. simple_cxx11_metaprogramming.pdf
  25. simple_cxx11_metaprogramming_2.pdf ;
  26. install pdf_ :
  27. mp11.pdf
  28. simple_cxx11_metaprogramming.pdf
  29. simple_cxx11_metaprogramming_2.pdf :
  30. <location>pdf ;
  31. explicit pdf_ ;
  32. ###############################################################################
  33. alias boostdoc ;
  34. explicit boostdoc ;
  35. alias boostrelease : html_ ;
  36. explicit boostrelease ;