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

Contents of /trunk/doc/epydoc/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 485 - (show annotations)
Thu Feb 2 04:21:02 2006 UTC (17 years, 1 month ago) by jgs
File size: 508 byte(s)
change scons files to match new esys_options based format
1 # Scons configuration file for epydoc docs
2
3 import os
4
5 #
6 # set appropriate defaults for configuration variables
7
8 esysroot=str(Dir('../..').abspath)
9 execfile(str(File(esysroot+"/scons/esys_options.py")))
10
11 import scons_extensions
12
13 #
14 # do the actual build
15
16 source = 'runepydoc'
17
18 epydoc_env = Environment(ENV = os.environ)
19
20 runEpydoc_builder = Builder(action = scons_extensions.build_epydoc, suffix = ".run")
21 epydoc_env.Append(BUILDERS = {'RunEpydoc' : runEpydoc_builder})
22
23 Default(epydoc_env.RunEpydoc(source))

  ViewVC Help
Powered by ViewVC 1.1.26