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 |
# builds the user's guide |
13 |
|
14 |
# command to run: |
15 |
# epydoc --html -o doc/epydoc -n esys esys > /tmp/epydoc_msgs.txt 2>&1 |
16 |
|
17 |
import os |
18 |
Import('*') |
19 |
|
20 |
#local_env.PrependENVPath('PYTHONPATH',str(pyinstall)) |
21 |
env.Command(api_epydoc, pyinstall,"epydoc --html -o $TARGET esys esys") |
22 |
|