]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/quickbook/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / tools / quickbook / Jamfile.v2
1 #==============================================================================
2 # Copyright (c) 2002 2004 2006 Joel de Guzman
3 # Copyright (c) 2004 Eric Niebler
4 # Copyright (c) 2015 Rene Rivera
5 # http://spirit.sourceforge.net/
6 #
7 # Use, modification and distribution is subject to the Boost Software
8 # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
9 # http://www.boost.org/LICENSE_1_0.txt)
10 #==============================================================================
11
12 import boostcpp ;
13 import path ;
14 import option ;
15
16 local DIST_DIR = [ option.get distdir ] ;
17 DIST_DIR ?= [ path.join $(BOOST_ROOT) dist ] ;
18 DIST_DIR = [ path.root $(DIST_DIR) [ path.pwd ] ] ;
19 local DIST_BIN = [ path.join $(DIST_DIR) bin ] ;
20
21 # Install quickbook by default.
22
23 install dist-bin
24 :
25 src//quickbook
26 :
27 <install-type>EXE
28 <location>$(DIST_BIN)
29 :
30 release
31 ;
32
33 # Target for quickbook toolset's auto build.
34
35 alias quickbook
36 : src//quickbook
37 : release
38 ;
39
40 explicit quickbook
41 ;