Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/Jamfile.v2 @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 819 bytes
Line 
1
2# Jamfile which builds all the tools.
3
4project
5    :
6    requirements
7    <link>static
8    <runtime-link>static
9    <threading>single
10    ;
11
12TOOLS =
13    bcp//bcp
14    inspect/build//inspect
15    quickbook//quickbook
16    regression/build//compiler_status
17    regression/build//process_jam_log
18    wave/build//wave
19    ;
20
21install dist-bin
22    :
23    $(TOOLS)
24    :
25    <install-type>EXE
26    <location>../dist/bin
27    :
28    release
29    ;
30
31install dist-lib
32    :
33    $(TOOLS)
34    :
35    <install-type>LIB
36    <location>../dist/lib
37    :
38    release
39    ;
40
41local patterns = *.dtd *.xml *.xsl LICENSE ;
42local dirs = boostbook/dtd boostbook/xsl ;
43install dist-share-boostbook
44    :
45    [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
46    :
47    <location>../dist/share
48    <install-source-root>.
49    ;
Note: See TracBrowser for help on using the repository browser.