1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# 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 |
# |
12 |
######################################################## |
13 |
|
14 |
|
15 |
import os |
16 |
Import('*') |
17 |
|
18 |
#env.Command(env['prefix']+'/release/doc/epydoc', env['pyinstall'], [Mkdir(env['prefix']+'/release/doc/epydoc'), "epydoc --html -o $TARGET esys"]) |
19 |
#env.Alias('api_epydoc', env['prefix']+'/release/doc/epydoc') |
20 |
#env.AlwaysBuild('api_epydoc') |
21 |
|
22 |
dirname=os.path.join(env['prefix'],'release','doc','epydoc') |
23 |
|
24 |
env.Command(dirname, [], [Mkdir(dirname)]) |
25 |
|
26 |
env.Alias('api_epydoc', [env['pyinstall'], dirname], "epydoc -v --html -o "+dirname+" esys") |
27 |
|
28 |
#This will need to be here at least until the output of api_epydoc properly depends on |
29 |
#the libraries it uses as input |
30 |
env.AlwaysBuild('api_epydoc') |
31 |
|
32 |
|