Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/Jamfile.v2 @ 35

Last change on this file since 35 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.0 KB
Line 
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    ;
16
17TOOLS =
18    bcp//bcp
19    inspect/build//inspect
20    quickbook//quickbook
21    regression/build//compiler_status
22    regression/build//process_jam_log
23    wave/build//wave
24    ;
25
26install dist-bin
27    :
28    $(TOOLS)
29    :
30    <install-type>EXE
31    <location>../dist/bin
32    :
33    release
34    ;
35
36install dist-lib
37    :
38    $(TOOLS)
39    :
40    <install-type>LIB
41    <location>../dist/lib
42    :
43    release
44    ;
45
46local patterns = *.dtd *.xml *.xsl LICENSE ;
47local dirs = boostbook/dtd boostbook/xsl ;
48install dist-share-boostbook
49    :
50    [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
51    :
52    <location>../dist/share
53    <install-source-root>.
54    ;
Note: See TracBrowser for help on using the repository browser.