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

Contents of /trunk/doc/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1388 - (show annotations)
Fri Jan 11 07:45:58 2008 UTC (15 years, 2 months ago) by trankine
File size: 1195 byte(s)
And get the *(&(*&(* name right
1 # Scons configuration file for documentation
2
3 # 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 #
11 #
12 # set appropriate defaults for configuration variables
13
14 import os
15 Import('*')
16
17 local_env=env.Copy()
18
19 # get all the file names in doc/examples:
20 src_dir = local_env.Dir('examples').srcnode().abspath
21 example_files = os.popen("find " + src_dir + " -name .svn -prune -o -type f -print").read().split(None)
22
23 env.Zip(examples_zipfile, example_files)
24 env.Tar(examples_tarfile, example_files)
25
26 # Call the doc build using SConscript
27 local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1)
28
29 local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1)
30 local_env.SConscript(dirs = ['#/doc/doxygen'], build_dir='#/build/$PLATFORM/doc/doxygen', duplicate=1)

  ViewVC Help
Powered by ViewVC 1.1.26