blob: b6d2c35d84808cd74c4cb3f92e5f1f00a8ba8079 [file] [log] [blame]
Brian Silverman355f11d2018-08-04 23:57:00 -07001# 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
8project doc/smart_ptr ;
9
10import asciidoctor ;
11
12html smart_ptr.html : smart_ptr.adoc ;
13
14install html_ : smart_ptr.html : <location>html ;
15
16pdf smart_ptr.pdf : smart_ptr.adoc ;
17explicit smart_ptr.pdf ;
18
19install pdf_ : smart_ptr.pdf : <location>pdf ;
20explicit pdf_ ;
21
22###############################################################################
23alias boostdoc ;
24explicit boostdoc ;
25alias boostrelease : html_ ;
26explicit boostrelease ;