1# Copyright 2017 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# import boostbook ; 9 10html assert.html : index.adoc ; 11 12# docbook assert.docbook : index.adoc ; 13# boostbook assert.html : assert.docbook : <format>onehtml ; 14 15install html_ : assert.html : <location>html ; 16 17pdf assert.pdf : index.adoc ; 18explicit assert.pdf ; 19 20install pdf_ : assert.pdf : <location>pdf ; 21explicit pdf_ ; 22 23############################################################################### 24alias boostdoc ; 25explicit boostdoc ; 26alias boostrelease : html_ ; 27explicit boostrelease ; 28