1# Copyright 2019 Glen Joseph Fernandes 2# ([email protected]) 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 endian.html : endian.adoc ; 10 11install html_ : endian.html : <location>html ; 12 13pdf endian.pdf : endian.adoc ; 14 15explicit endian.pdf ; 16 17install pdf_ : endian.pdf : <location>pdf ; 18 19explicit pdf_ ; 20 21alias boostdoc ; 22 23explicit boostdoc ; 24 25alias boostrelease : html_ ; 26 27explicit boostrelease ; 28