1# Copyright 2005 Rene Rivera
2# Copyright 2005 Hartmut Kaiser
3# Copyright 2005 John Maddock
4# Copyright 2003 Vladimir Prus
5# Distributed under the Boost Software License, Version 1.0.
6# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
7
8
9# Jamfile which builds all the tools.
10
11project
12    :
13    requirements
14    <link>static
15    <implicit-dependency>/boost//headers
16    :
17    usage-requirements <implicit-dependency>/boost//headers
18    ;
19
20TOOLS =
21    bcp//bcp
22    inspect/build//inspect
23    quickbook//quickbook
24    /boost/libs/wave/tool//wave
25    ;
26
27install dist-bin
28    :
29    $(TOOLS)
30    :
31    <install-type>EXE
32    <location>../dist/bin
33    :
34    release
35    ;
36
37install dist-lib
38    :
39    $(TOOLS)
40    :
41    <install-type>LIB
42    <location>../dist/lib
43    :
44    release
45    ;
46
47local patterns = *.dtd *.xml *.xsl LICENSE ;
48local dirs = boostbook/dtd boostbook/xsl ;
49install dist-share-boostbook
50    :
51    [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
52    :
53    <location>../dist/share
54    <install-source-root>.
55    ;
56