1# Copyright 2017, 2018 Peter Dimov
2#
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at
5# http://www.boost.org/LICENSE_1_0.txt)
6
7import asciidoctor ;
8
9html system.html : system.adoc ;
10
11install html_ : system.html : <location>html ;
12
13pdf system.pdf : system.adoc ;
14explicit system.pdf ;
15
16install pdf_ : system.pdf : <location>pdf ;
17explicit pdf_ ;
18
19###############################################################################
20alias boostdoc ;
21explicit boostdoc ;
22alias boostrelease : html_ ;
23explicit boostrelease ;
24