summaryrefslogtreecommitdiffstats
path: root/doc/user/sourcecode.xml
diff options
context:
space:
mode:
authorTom Tanner <ttanner2@bloomberg.net>2013-10-30 12:34:15 (GMT)
committerTom Tanner <ttanner2@bloomberg.net>2013-10-30 12:34:15 (GMT)
commit54eaf41e5eadd05c73b0ad21223f73c4ed47684f (patch)
tree368ae3aa60375a38c6d2d967548f0bd16a0ab4e5 /doc/user/sourcecode.xml
parentd5870b7149bcb4058c21288827a5c79f2f12ccdb (diff)
parente38f59cab5d40f09f15c5e65645aa2d8af165c66 (diff)
downloadSCons-54eaf41e5eadd05c73b0ad21223f73c4ed47684f.zip
SCons-54eaf41e5eadd05c73b0ad21223f73c4ed47684f.tar.gz
SCons-54eaf41e5eadd05c73b0ad21223f73c4ed47684f.tar.bz2
Merged scons/scons into default
Diffstat (limited to 'doc/user/sourcecode.xml')
-rw-r--r--doc/user/sourcecode.xml36
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/user/sourcecode.xml b/doc/user/sourcecode.xml
index 2225882..c6d645f 100644
--- a/doc/user/sourcecode.xml
+++ b/doc/user/sourcecode.xml
@@ -65,12 +65,12 @@
<scons_example name="sourcecode_bitkeeper">
<file name="SConstruct" printme="1">
- env = Environment()
- env.SourceCode('.', env.BitKeeper())
- env.Program('hello.c')
+env = Environment()
+env.SourceCode('.', env.BitKeeper())
+env.Program('hello.c')
</file>
<file name="s.hello.c">
- s.hello.c
+s.hello.c
</file>
</scons_example>
@@ -91,9 +91,9 @@
<scons_example name="sourcecode_cvs">
<file name="SConstruct" printme="1">
- env = Environment()
- env.SourceCode('.', env.CVS('/usr/local/CVS'))
- env.Program('hello.c')
+env = Environment()
+env.SourceCode('.', env.CVS('/usr/local/CVS'))
+env.Program('hello.c')
</file>
</scons_example>
@@ -114,12 +114,12 @@
<scons_example name="sourcecode_rcs">
<file name="SConstruct" printme="1">
- env = Environment()
- env.SourceCode('.', env.RCS())
- env.Program('hello.c')
+env = Environment()
+env.SourceCode('.', env.RCS())
+env.Program('hello.c')
</file>
<file name="hello.c,v">
- hello.c,v
+hello.c,v
</file>
</scons_example>
@@ -140,12 +140,12 @@
<scons_example name="sourcecode_sccs">
<file name="SConstruct" printme="1">
- env = Environment()
- env.SourceCode('.', env.SCCS())
- env.Program('hello.c')
+env = Environment()
+env.SourceCode('.', env.SCCS())
+env.Program('hello.c')
</file>
<file name="s.hello.c">
- s.hello.c
+s.hello.c
</file>
</scons_example>
@@ -168,9 +168,9 @@
<scons_example name="sourcecode_subversion">
<file name="SConstruct" printme="1">
- env = Environment()
- env.SourceCode('.', env.Subversion('XXX'))
- env.Program('hello.c')
+env = Environment()
+env.SourceCode('.', env.Subversion('XXX'))
+env.Program('hello.c')
</file>
</scons_example>