1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
|
15 |
import os |
16 |
Import('*') |
17 |
|
18 |
local_env = clone_env(env) |
19 |
|
20 |
# get all the file names in doc/examples: |
21 |
src_dir = local_env.Dir('examples').srcnode().abspath |
22 |
example_files = os.popen("find " + src_dir + " -name .svn -prune -o -type f -print").read().split(None) |
23 |
|
24 |
tmp1 = env.Command("release/doc/escript_examples.zip", None, "zip release/doc/escript_examples.zip "+" ".join(example_files)) |
25 |
env.Alias('examples_zipfile', tmp1) |
26 |
|
27 |
env=Environment(TARFLAGS = '-c -z') |
28 |
if 'Tar' in dir(env): env.Tar('#release/doc/escript_examples.tar.gz', example_files) |
29 |
env.Alias('examples_tarfile', '#release/doc/escript_examples.tar.gz') |
30 |
|
31 |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
32 |
local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1) |
33 |
local_env.SConscript(dirs = ['#/doc/doxygen'], build_dir='#/build/$PLATFORM/doc/doxygen', duplicate=1) |
34 |
|