summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-01-10 22:34:47 +1100
committerChris Johns <chrisj@rtems.org>2017-01-10 22:34:47 +1100
commit9aa52b9130e20f8ccb8588c05001cc960f8e9039 (patch)
tree320f6bbcacc762be1df3f26ccc3c661781e75f16 /wscript
parentwaf: Improved XML Catalogue generator. (diff)
downloadrtems-docs-9aa52b9130e20f8ccb8588c05001cc960f8e9039.tar.bz2
waf: Add a title to the XML Catalogue.
Diffstat (limited to 'wscript')
-rw-r--r--wscript19
1 files changed, 11 insertions, 8 deletions
diff --git a/wscript b/wscript
index eff1113..8cc4ee7 100644
--- a/wscript
+++ b/wscript
@@ -9,17 +9,19 @@ path.append(abspath('common'))
import waflib
import waf as docs_waf
-build_all = ['bsp-howto',
+version = 'Master (4.11.99)'
+
+build_all = ['user',
+ 'rsb',
'c-user',
- 'cpu-supplement',
- 'develenv',
- 'eclipse',
+ 'bsp-howto',
+ 'posix-users',
'filesystem',
'networking',
- 'posix-users',
- 'rsb',
'shell',
- 'user']
+ 'cpu-supplement',
+ 'develenv',
+ 'eclipse']
building = build_all
@@ -32,7 +34,7 @@ def configure(conf):
conf.env['BUILD_FROM_TOP'] = 'yes'
def catalogue(ctx):
- docs_waf.xml_catalogue(ctx, building)
+ docs_waf.xml_catalogue(ctx, building, version)
def build(ctx):
for b in building:
@@ -40,6 +42,7 @@ def build(ctx):
ctx(rule = catalogue,
target = 'catalogue.xml',
source = ['wscript', 'common/waf.py'])
+ ctx.install_files('${PREFIX}', 'catalogue.xml')
def install(ctx):
for b in building: