• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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#==============================================================================
7project boost/hof/doc ;
8
9path-constant HERE : . ;
10
11make hof-doc :  : @make-hof-doc ;
12
13actions make-hof-doc {
14    sphinx-build -b html $(HERE) $(HERE)/html/
15}
16
17
18alias boostdoc ;
19explicit boostdoc ;
20alias boostrelease : hof-doc ;
21explicit boostrelease ;
22
23