blob: 62b865bc829a196925828eebc2f1ebba42cba143 (
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
|
<!--
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 acks SYSTEM "acks.sgml">
<!ENTITY bground SYSTEM "bground.sgml">
<!ENTITY engine SYSTEM "engine.sgml">
<!ENTITY goals SYSTEM "goals.sgml">
<!ENTITY install SYSTEM "install.sgml">
<!ENTITY intro SYSTEM "intro.sgml">
<!ENTITY issues SYSTEM "issues.sgml">
<!ENTITY native SYSTEM "native.sgml">
<!ENTITY overview SYSTEM "overview.sgml">
]>
<book>
<bookinfo>
<title>SCons Design version &buildversion;</title>
<author>
<firstname>Steven</firstname>
<surname>Knight</surname>
</author>
<edition>Revision &buildrevision; (&builddate;)</edition>
<pubdate>2001</pubdate>
<copyright>
<year>2001</year>
<holder>Steven Knight</holder>
</copyright>
<legalnotice>
©right;
</legalnotice>
<releaseinfo>version &buildversion;</releaseinfo>
</bookinfo>
<chapter id="chap-intro">
<title>Introduction</title>
&intro;
</chapter>
<chapter id="chap-goals">
<title>Goals</title>
&goals;
</chapter>
<chapter id="chap-overview">
<title>Overview</title>
&overview;
</chapter>
<chapter id="chap-engine">
<title>Build Engine API</title>
&engine;
</chapter>
<chapter id="chap-native">
<title>Native Python Interface</title>
&native;
</chapter>
<chapter id="chap-install">
<title>Installation</title>
&install;
</chapter>
<chapter id="chap-issues">
<title>Other Issues</title>
&issues;
</chapter>
<chapter id="chap-background">
<title>Background</title>
&bground;
</chapter>
<chapter id="chap-summary">
<title>Summary</title>
<para>
&SCons; offers a robust and feature-rich design for an SC-build
tool. With a Build Engine based on the proven design of
the &Cons; utility, it offers increased simplification of the
user interface for unsophisticated users with the addition
of the "do-the-right-thing" <function>env.Make</function>
method, increased flexibility for sophisticated users with the
addition of &Builder; and &Scanner; objects, a mechanism to
allow tool-masters (and users) to share working construction
environments, and embeddability to provide reliable dependency
management in a variety of environments and interfaces.
</para>
</chapter>
<chapter id="chap-acks">
<title>Acknowledgements</title>
&acks;
</chapter>
</book>
|