blob: eb7ab39e6ab66fe68eaa86521e45c0f7a7747a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
<!--
Copyright 2001 Steven Knight
-->
<!doctype book PUBLIC "-//OASIS//DTD DocBook V4.1//EN"
[
<!ENTITY % version SYSTEM "../version.sgml">
%version;
<!ENTITY % scons SYSTEM "../scons.mod">
%scons;
<!ENTITY preface SYSTEM "preface.sgml">
<!ENTITY simple SYSTEM "simple.sgml">
<!ENTITY environments SYSTEM "environments.sgml">
<!ENTITY depends SYSTEM "depends.sgml">
<!ENTITY more SYSTEM "more.sgml">
<!ENTITY hierarchy SYSTEM "hierarchy.sgml">
<!ENTITY variants SYSTEM "variants.sgml">
<!ENTITY builders SYSTEM "builders.sgml">
<!ENTITY scanners SYSTEM "scanners.sgml">
<!ENTITY repositories SYSTEM "repositories.sgml">
<!ENTITY caching SYSTEM "caching.sgml">
<!ENTITY run SYSTEM "run.sgml">
<!ENTITY troubleshoot SYSTEM "troubleshoot.sgml">
<!ENTITY reference SYSTEM "reference.sgml">
<!ENTITY errors SYSTEM "errors.sgml">
<!ENTITY example SYSTEM "example.sgml">
<!ENTITY make SYSTEM "make.sgml">
<!ENTITY cons SYSTEM "cons.sgml">
]>
<book>
<bookinfo>
<title>SCons User Guide &build_version;</title>
<author>
<firstname>Steven</firstname>
<surname>Knight</surname>
</author>
<edition>Revision &build_revision; (&build_date;)</edition>
<pubdate>2001</pubdate>
<copyright>
<year>2001</year>
<holder>Steven Knight</holder>
</copyright>
<legalnotice>
©right;
</legalnotice>
<releaseinfo>version &build_version;</releaseinfo>
</bookinfo>
<chapter id="chap-preface">
<title>Preface</title>
&preface;
</chapter>
<chapter id="chap-simple">
<title>Simple Builds</title>
&simple;
</chapter>
<chapter id="chap-environments">
<title>Construction Environments</title>
&environments;
</chapter>
<chapter id="chap-depends">
<title>Dependencies</title>
&depends;
</chapter>
<chapter id="chap-more">
<title>More Things to Do With Builds</title>
&more;
</chapter>
<chapter id="chap-hierarchical">
<title>Hierarchial Builds</title>
&hierarchy;
</chapter>
<chapter id="chap-variant">
<title>Variant Builds</title>
&variants;
</chapter>
<chapter id="chap-builders">
<title>Writing Builders</title>
&builders;
</chapter>
<chapter id="chap-scanners">
<title>Writing Scanners</title>
&scanners;
</chapter>
<chapter id="chap-repositories">
<title>Building From Code Repositories</title>
&repositories;
</chapter>
<chapter id="chap-caching">
<title>Caching Built Files</title>
&caching;
</chapter>
<chapter id="chap-run">
<title>How to Run &SCons;</title>
&run;
</chapter>
<chapter id="chap-troubleshooting">
<title>Troubleshooting</title>
&troubleshoot;
</chapter>
<appendix id="app-quick">
<title>Quick Reference</title>
&reference;
</appendix>
<appendix id="app-errors">
<title>Errors Generated by &SCons;</title>
&errors;
</appendix>
<appendix id="app-example">
<title>Complex &SCons; Example</title>
&example;
</appendix>
<appendix id="app-make">
<title>Converting From Make</title>
&make;
</appendix>
<appendix id="app-cons">
<title>Converting From Cons</title>
&cons;
</appendix>
</book>
|