Line | |
---|
1 | |
---|
2 | # Jamfile which builds all the tools. |
---|
3 | |
---|
4 | project |
---|
5 | : |
---|
6 | requirements |
---|
7 | <link>static |
---|
8 | <runtime-link>static |
---|
9 | <threading>single |
---|
10 | ; |
---|
11 | |
---|
12 | TOOLS = |
---|
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 | |
---|
21 | install dist-bin |
---|
22 | : |
---|
23 | $(TOOLS) |
---|
24 | : |
---|
25 | <install-type>EXE |
---|
26 | <location>../dist/bin |
---|
27 | : |
---|
28 | release |
---|
29 | ; |
---|
30 | |
---|
31 | install dist-lib |
---|
32 | : |
---|
33 | $(TOOLS) |
---|
34 | : |
---|
35 | <install-type>LIB |
---|
36 | <location>../dist/lib |
---|
37 | : |
---|
38 | release |
---|
39 | ; |
---|
40 | |
---|
41 | local patterns = *.dtd *.xml *.xsl LICENSE ; |
---|
42 | local dirs = boostbook/dtd boostbook/xsl ; |
---|
43 | install 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.