summaryrefslogtreecommitdiffstats
path: root/doc/user/main.in
blob: 0fcf95cceb53529b95a7974d12a85ff64c2b0286 (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<!--

  Copyright (c) 2001, 2002, 2003 Steven Knight

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be included
  in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

-->

<!doctype book PUBLIC "-//OASIS//DTD DocBook V4.1//EN"
[

    <!ENTITY % version SYSTEM "../version.sgml">
    %version;

    <!ENTITY % scons SYSTEM "../scons.mod">
    %scons;

    <!ENTITY actions SYSTEM "actions.sgml">
    <!ENTITY alias SYSTEM "alias.sgml">
    <!ENTITY ant SYSTEM "ant.sgml">
    <!ENTITY builders-built-in SYSTEM "builders-built-in.sgml">
    <!ENTITY builders-commands SYSTEM "builders-commands.sgml">
    <!ENTITY builders-writing SYSTEM "builders-writing.sgml">
    <!ENTITY caching SYSTEM "caching.sgml">
    <!ENTITY command-line SYSTEM "command-line.sgml">
    <!ENTITY cons SYSTEM "cons.sgml">
    <!ENTITY copyright SYSTEM "copyright.sgml">
    <!ENTITY depends SYSTEM "depends.sgml">
    <!ENTITY ENV_file SYSTEM "ENV.sgml">
    <!ENTITY environments SYSTEM "environments.sgml">
    <!ENTITY errors SYSTEM "errors.sgml">
    <!ENTITY example SYSTEM "example.sgml">
    <!ENTITY help SYSTEM "help.sgml">
    <!ENTITY hierarchy SYSTEM "hierarchy.sgml">
    <!ENTITY install SYSTEM "install.sgml">
    <!ENTITY libraries SYSTEM "libraries.sgml">
    <!ENTITY make SYSTEM "make.sgml">
    <!ENTITY precious SYSTEM "precious.sgml">
    <!ENTITY preface SYSTEM "preface.sgml">
    <!ENTITY repositories SYSTEM "repositories.sgml">
    <!ENTITY run SYSTEM "run.sgml">
    <!ENTITY scanners SYSTEM "scanners.sgml">
    <!ENTITY separate SYSTEM "separate.sgml">
    <!ENTITY simple SYSTEM "simple.sgml">
    <!ENTITY sourcecode SYSTEM "sourcecode.sgml">
    <!ENTITY tasks SYSTEM "tasks.sgml">
    <!ENTITY troubleshoot SYSTEM "troubleshoot.sgml">
    <!ENTITY variants SYSTEM "variants.sgml">

]>

<book>
  <bookinfo>
    <title>SCons User Guide &buildversion;</title>

    <author>
      <firstname>Steven</firstname>
      <surname>Knight</surname>
    </author>

    <edition>Revision &buildrevision; (&builddate;)</edition>

    <pubdate>2003</pubdate>

    <copyright>
      <year>2003</year>
      <holder>Steven Knight</holder>
    </copyright>

    <legalnotice>
      &copyright;
    </legalnotice>

    <releaseinfo>version &buildversion;</releaseinfo>

  </bookinfo>

  <chapter id="chap-preface">
    <title>Preface</title>
    &preface;
  </chapter>

  <chapter id="chap-simple">
    <title>Simple Builds</title>
    &simple;
  </chapter>

  <chapter id="chap-libraries">
    <title>Building and Linking with Libraries</title>
    &libraries;
  </chapter>

  <chapter id="chap-depends">
    <title>Dependencies</title>
    &depends;
  </chapter>

  <chapter id="chap-environments">
    <title>Construction Environments</title>
    &environments;
  </chapter>

  <chapter id="chap-ENV">
    <title>Controlling the Environment Used to Execute Build Commands</title>
    &ENV_file;
  </chapter>

  <chapter id="chap-command-line">
    <title>Controlling a Build From the Command Line</title>
    &command-line;
  </chapter>

  <chapter id="chap-help">
    <title>Providing Build Help</title>
    &help;
  </chapter>

  <chapter id="chap-install">
    <title>Installing Files in Other Directories</title>
    &install;
  </chapter>

  <chapter id="chap-precious">
    <title>Preventing Removal of Targets</title>
    &precious;
  </chapter>

  <chapter id="chap-hierarchical">
    <title>Hierarchical Builds</title>
    &hierarchy;
  </chapter>

  <chapter id="chap-separate">
    <title>Separating Source and Build Directories</title>
    &separate;
  </chapter>

  <chapter id="chap-variants">
    <title>Variant Builds</title>
    &variants;
  </chapter>

  <!--

  <chapter id="chap-builders-built-in">
    <title>Built-In Builders</title>
    &builders-built-in;
  </chapter>

  -->

  <chapter id="chap-builders-writing">
    <title>Writing Your Own Builders</title>
    &builders-writing;
  </chapter>

  <chapter id="chap-builders-commands">
    <title>Not Writing a Builder:  The &Command; Builder</title>
    &builders-commands;
  </chapter>

  <!--

  <chapter id="chap-actions">
    <title>SCons Actions</title>
    &actions;
  </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-sourcecode">
    <title>Fetching Files From Source Code Management Systems</title>
    &sourcecode;
  </chapter>

  -->

  <chapter id="chap-caching">
    <title>Caching Built Files</title>
    &caching;
  </chapter>

  <chapter id="chap-alias">
    <title>Alias Targets</title>
    &alias;
  </chapter>

  <!--

  <chapter id="chap-run">
    <title>How to Run &SCons;</title>
    &run;
  </chapter>

  <chapter id="chap-troubleshooting">
    <title>Troubleshooting</title>
    &troubleshoot;
  </chapter>

  -->

  <!--
  AddPostAction()
  AddPreAction()
  Clean()
  Dir()
  File()
  FindFile()
  GetJobs()
  SetJobs()
  SideEffect()
  ParseConfig()
  Platform()
  Tools()
  -->

  <appendix id="app-tasks">
    <title>Handling Common Tasks</title>
    &tasks;
  </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>

  <appendix id="app-ant">
    <title>Converting From Ant</title>
    &ant;
  </appendix>

  -->

</book>