|
# Scons configuration file for documentation |
|
|
|
|
|
# Copyright 2006 by ACcESS MNRF |
|
|
# |
|
|
# http://www.access.edu.au |
|
|
# Primary Business: Queensland, Australia |
|
|
# Licensed under the Open Software License version 3.0 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
|
|
# |
|
1 |
# |
# |
2 |
|
# $Id$ |
3 |
|
# |
4 |
|
####################################################### |
5 |
|
# |
6 |
|
# Copyright 2003-2007 by ACceSS MNRF |
7 |
|
# Copyright 2007 by University of Queensland |
8 |
|
# |
9 |
|
# http://esscc.uq.edu.au |
10 |
|
# Primary Business: Queensland, Australia |
11 |
|
# Licensed under the Open Software License version 3.0 |
12 |
|
# http://www.opensource.org/licenses/osl-3.0.php |
13 |
|
# |
14 |
|
####################################################### |
15 |
# |
# |
|
# set appropriate defaults for configuration variables |
|
16 |
|
|
17 |
esysroot=str(Dir('..').abspath) |
import os |
18 |
execfile(str(File(esysroot+"/scons/esys_options.py"))) |
Import('*') |
19 |
|
|
20 |
# |
local_env = clone_env(env) |
21 |
# call appropriate SConscripts |
|
22 |
|
# get all the file names in doc/examples: |
23 |
|
src_dir = local_env.Dir('examples').srcnode().abspath |
24 |
|
example_files = os.popen("find " + src_dir + " -name .svn -prune -o -type f -print").read().split(None) |
25 |
|
|
26 |
|
if 'Zip' in dir(env): env.Zip('#release/doc/escript_examples.zip', example_files) |
27 |
|
env.Alias('examples_zipfile', '#release/doc/escript_examples.zip') |
28 |
|
|
29 |
|
env=Environment(TARFLAGS = '-c -z') |
30 |
|
if 'Tar' in dir(env): env.Tar('#release/doc/escript_examples.tar.gz', example_files) |
31 |
|
env.Alias('examples_tarfile', '#release/doc/escript_examples.tar.gz') |
32 |
|
|
33 |
target_scripts = ['doxygen/SConscript', |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
34 |
'epydoc/SConscript'] |
local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1) |
35 |
|
local_env.SConscript(dirs = ['#/doc/doxygen'], build_dir='#/build/$PLATFORM/doc/doxygen', duplicate=1) |
36 |
|
|
|
SConscript(target_scripts, duplicate=0) |
|