Jamfile.v2 623 B

12345678910111213141516171819202122
  1. #=============================================================================
  2. # Copyright (c) 2017 Paul Fultz II
  3. # Jamfile.v2
  4. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #==============================================================================
  7. project boost/hof/doc ;
  8. path-constant HERE : . ;
  9. make hof-doc : : @make-hof-doc ;
  10. actions make-hof-doc {
  11. sphinx-build -b html $(HERE) $(HERE)/html/
  12. }
  13. alias boostdoc ;
  14. explicit boostdoc ;
  15. alias boostrelease : hof-doc ;
  16. explicit boostrelease ;