Bring CVS back in sync.
[scons.git] / src / engine / SCons / Tool / as.xml
1 <!--
2 __COPYRIGHT__
3
4 This file is processed by the bin/SConsDoc.py module.
5 See its __doc__ string for a discussion of the format.
6 -->
7 <tool name="as">
8 <summary>
9 XXX
10 </summary>
11 </tool>
12
13 <cvar name="AS">
14 <summary>
15 The assembler.
16 </summary>
17 </cvar>
18
19 <cvar name="ASCOM">
20 <summary>
21 The command line used to generate an object file
22 from an assembly-language source file.
23 </summary>
24 </cvar>
25
26 <cvar name="ASCOMSTR">
27 <summary>
28 The string displayed when an object file
29 is generated from an assembly-language source file.
30 If this is not set, then &cv-ASCOM; (the command line) is displayed.
31
32 <example>
33 env = Environment(ASCOMSTR = "Assembling $TARGET")
34 </example>
35 </summary>
36 </cvar>
37
38 <cvar name="ASFLAGS">
39 <summary>
40 General options passed to the assembler.
41 </summary>
42 </cvar>
43
44 <cvar name="ASPPCOM">
45 <summary>
46 The command line used to assemble an assembly-language
47 source file into an object file
48 after first running the file through the C preprocessor.
49 Any options specified in the &cv-ASFLAGS; and &cv-CPPFLAGS; construction variables
50 are included on this command line.
51 </summary>
52 </cvar>
53
54 <cvar name="ASPPCOMSTR">
55 <summary>
56 The string displayed when an object file
57 is generated from an assembly-language source file
58 after first running the file through the C preprocessor.
59 If this is not set, then &cv-ASPPCOM; (the command line) is displayed.
60
61 <example>
62 env = Environment(ASPPCOMSTR = "Assembling $TARGET")
63 </example>
64 </summary>
65 </cvar>
66
67 <cvar name="ASPPFLAGS">
68 <summary>
69 General options when an assembling an assembly-language
70 source file into an object file
71 after first running the file through the C preprocessor.
72 The default is to use the value of &cv-ASFLAGS;.
73 </summary>
74 </cvar>