/[escript]/trunk/doc/SConscript
ViewVC logotype

Annotation of /trunk/doc/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2091 - (hide annotations)
Tue Nov 25 03:26:51 2008 UTC (14 years, 4 months ago) by ksteube
File size: 1314 byte(s)
Updates for running epydoc and creating examples_zipfile

1 ksteube 1811
2     ########################################################
3 cochrane 369 #
4 ksteube 1811 # Copyright (c) 2003-2008 by University of Queensland
5     # Earth Systems Science Computational Center (ESSCC)
6     # http://www.uq.edu.au/esscc
7 elspeth 643 #
8 ksteube 1811 # 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 ksteube 1705 #
12 ksteube 1811 ########################################################
13 cochrane 369
14 ksteube 1811
15 gross 707 import os
16     Import('*')
17 cochrane 369
18 ksteube 1705 local_env = clone_env(env)
19 cochrane 369
20 ksteube 1215 # get all the file names in doc/examples:
21 gross 707 src_dir = local_env.Dir('examples').srcnode().abspath
22 ksteube 1215 example_files = os.popen("find " + src_dir + " -name .svn -prune -o -type f -print").read().split(None)
23    
24 ksteube 2091 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 ksteube 1215
27 jfenwick 1796 env=Environment(TARFLAGS = '-c -z')
28 ksteube 1705 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 gross 707 local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1)
32 elspeth 712 local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1)
33 ksteube 1215 local_env.SConscript(dirs = ['#/doc/doxygen'], build_dir='#/build/$PLATFORM/doc/doxygen', duplicate=1)
34 ksteube 1705

  ViewVC Help
Powered by ViewVC 1.1.26