diff options
author | Dirk Baechle <dl9obn@darc.de> | 2013-05-03 22:41:56 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2013-05-03 22:41:56 (GMT) |
commit | 6885c3fd4f501aff9d5cde7b0bb3aedaf5b63e10 (patch) | |
tree | 419e5508d729ce1dcdd8f5af033e80b174c5b3f3 /bin/docs-create-example-outputs.py | |
parent | 1c43c95fd745a770ad7b0be5ead347c62a18e006 (diff) | |
download | SCons-6885c3fd4f501aff9d5cde7b0bb3aedaf5b63e10.zip SCons-6885c3fd4f501aff9d5cde7b0bb3aedaf5b63e10.tar.gz SCons-6885c3fd4f501aff9d5cde7b0bb3aedaf5b63e10.tar.bz2 |
- cleaned up 'bin' directory
- several smaller fixes
- added first version of the Overview document for the doc toolchain
Diffstat (limited to 'bin/docs-create-example-outputs.py')
-rw-r--r-- | bin/docs-create-example-outputs.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/docs-create-example-outputs.py b/bin/docs-create-example-outputs.py new file mode 100644 index 0000000..30dc0ee --- /dev/null +++ b/bin/docs-create-example-outputs.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python +# +# Searches through the whole doc/user tree and creates +# all output files for the single examples. +# + +import os +import sys +import SConsExamples + +if __name__ == "__main__": + print "Checking whether all example names are unique..." + if SConsExamples.exampleNamesAreUnique(os.path.join('doc','user')): + print "OK" + else: + print "Not all example names and suffixes are unique! Please correct the errors listed above and try again." + sys.exit(0) + + SConsExamples.createAllExampleOutputs(os.path.join('doc','user')) |