Eliminate / replace remaining cPickle references in test scripts.
[scons.git] / doc / user / README
1 # __COPYRIGHT__
2
3 When adding a new file, add it to main.xml and MANIFEST.
4
5 To build the .xml files from the .in files:
6   scons -D BUILDDOC=1 foo.xml
7 To build the whole PDF doc from this dir, for testing:
8   scons -D ../../build/doc/PDF/scons-user.pdf 
9
10 Writing examples: here's a simple template.
11
12  <scons_example name="Foo">
13    <file name="SConstruct">
14     env = Environment()
15     print env.Dump("CC")
16    </file>
17  </scons_example>
18
19  <scons_output example="Foo">
20     <scons_output_command>scons -Q</scons_output_command>
21  </scons_output>