1 |
jgs |
485 |
# Scons configuration file for documentation |
2 |
cochrane |
369 |
|
3 |
elspeth |
643 |
# Copyright 2006 by ACcESS MNRF |
4 |
|
|
# |
5 |
|
|
# http://www.access.edu.au |
6 |
|
|
# Primary Business: Queensland, Australia |
7 |
|
|
# Licensed under the Open Software License version 3.0 |
8 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
9 |
|
|
# |
10 |
cochrane |
369 |
# |
11 |
elspeth |
643 |
# |
12 |
jgs |
485 |
# set appropriate defaults for configuration variables |
13 |
cochrane |
369 |
|
14 |
gross |
707 |
import os |
15 |
|
|
Import('*') |
16 |
cochrane |
369 |
|
17 |
gross |
707 |
local_env=env.Copy() |
18 |
cochrane |
369 |
|
19 |
gross |
707 |
# get all the examples: |
20 |
|
|
src_dir = local_env.Dir('examples').srcnode().abspath |
21 |
|
|
example_files=[] |
22 |
|
|
for x in os.listdir(src_dir): |
23 |
|
|
if not x.startswith("."): |
24 |
|
|
f = "examples/"+x |
25 |
|
|
if os.path.isdir(src_dir+'/'+f): |
26 |
|
|
example_files+=[ env.File(f+"/"+y) for y in os.listdir(src_dir+'/'+f) if not y.startswith('.')] |
27 |
|
|
else: |
28 |
|
|
example_files+=[ env.File(f) ] |
29 |
|
|
env.Zip(examples_zipfile, example_files) |
30 |
|
|
env.Tar(examples_tarfile, example_files) |
31 |
cochrane |
369 |
|
32 |
elspeth |
712 |
# Call the doc build using SConscript |
33 |
gross |
707 |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
34 |
elspeth |
712 |
|
35 |
|
|
local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1) |