1# Copyright 2017 Peter Dimov 2# 3# Distributed under the Boost Software License, Version 1.0. 4# 5# See accompanying file LICENSE_1_0.txt or copy at 6# http://www.boost.org/LICENSE_1_0.txt 7 8import asciidoctor ; 9 10html mp11.html : mp11.adoc ; 11 12html simple_cxx11_metaprogramming.html : 13 article/simple_cxx11_metaprogramming.adoc ; 14 15html simple_cxx11_metaprogramming_2.html : 16 article/simple_cxx11_metaprogramming_2.adoc ; 17 18install html_ : 19 mp11.html 20 simple_cxx11_metaprogramming.html 21 simple_cxx11_metaprogramming_2.html : 22 <location>html ; 23 24pdf mp11.pdf : mp11.adoc ; 25 26pdf simple_cxx11_metaprogramming.pdf : 27 article/simple_cxx11_metaprogramming.adoc ; 28 29pdf simple_cxx11_metaprogramming_2.pdf : 30 article/simple_cxx11_metaprogramming_2.adoc ; 31 32explicit mp11.pdf 33 simple_cxx11_metaprogramming.pdf 34 simple_cxx11_metaprogramming_2.pdf ; 35 36install pdf_ : 37 mp11.pdf 38 simple_cxx11_metaprogramming.pdf 39 simple_cxx11_metaprogramming_2.pdf : 40 <location>pdf ; 41 42explicit pdf_ ; 43 44############################################################################### 45alias boostdoc ; 46explicit boostdoc ; 47alias boostrelease : html_ ; 48explicit boostrelease ; 49