1# Copyright 2019 Glen Joseph Fernandes 2# (glenjofe@gmail.com) 3# 4# Distributed under the Boost Software License, Version 1.0. 5# (http://www.boost.org/LICENSE_1_0.txt) 6 7import asciidoctor ; 8 9html io.html : io.adoc ; 10 11install html_ : io.html : <location>html ; 12 13pdf io.pdf : io.adoc ; 14explicit io.pdf ; 15 16install pdf_ : io.pdf : <location>pdf ; 17explicit pdf_ ; 18 19alias boostdoc ; 20explicit boostdoc ; 21 22alias boostrelease : html_ ; 23explicit boostrelease ; 24