mirror of
https://github.com/boostorg/hof.git
synced 2026-01-31 20:22:11 +00:00
21 lines
573 B
Plaintext
21 lines
573 B
Plaintext
#=============================================================================
|
|
# Copyright (c) 2017 Paul Fultz II
|
|
# Jamfile.v2
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
#==============================================================================
|
|
project boost/hof/doc ;
|
|
|
|
make hof-doc : : @make-hof-doc ;
|
|
|
|
actions make-hof-doc {
|
|
sphinx-build -b html . html/
|
|
}
|
|
|
|
|
|
alias boostdoc ;
|
|
explicit boostdoc ;
|
|
alias boostrelease ;
|
|
explicit boostrelease ;
|
|
|