rtems-docs/wscript
2017-01-09 23:13:02 +11:00

46 lines
889 B
Python

#
# RTEMS Project Documentation
#
from sys import path
from os.path import abspath
path.append(abspath('common'))
import waf as docs_waf
build_all = ['bsp-howto',
'c-user',
'cpu-supplement',
'develenv',
'eclipse',
'filesystem',
'networking',
'posix-users',
'rsb',
'shell',
'user']
building = build_all
def options(opt):
docs_waf.cmd_options(opt)
def configure(conf):
for b in building:
conf.recurse(b)
conf.env['BUILD_FROM_TOP'] = 'yes'
def xml_catalogue(ctx):
docs_waf.xml_catalogue(ctx)
def build(ctx):
ctx.catalogue = {}
ctx.add_post_fun(xml_catalogue)
for b in building:
ctx.recurse(b)
ctx.install_files('${PREFIX}', 'catalogue.xml')
def install(ctx):
for b in building:
ctx.recurse(b)