source: rtems-docs/wscript @ 6916004

4.115
Last change on this file since 6916004 was 72a62ad, checked in by Chris Johns <chrisj@…>, on 11/03/16 at 05:58:08

Rename all manuals with an _ to have a -. It helps released naming of files.

  • Property mode set to 100644
File size: 694 bytes
Line 
1#
2# RTEMS Project Documentation
3#
4
5from sys import path
6from os.path import abspath
7path.append(abspath('common'))
8
9import waf as docs_waf
10
11build_all = ['c-user',
12             'posix-users',
13             'shell',
14             'user',
15             'eclipse',
16             'bsp-howto',
17             'cpu-supplement',
18             'filesystem',
19             'rsb',
20             'develenv']
21
22building = build_all
23
24def options(opt):
25    docs_waf.cmd_options(opt)
26
27def configure(conf):
28    for b in building:
29        conf.recurse(b)
30    conf.env['BUILD_FROM_TOP'] = 'yes'
31
32def build(ctx):
33    for b in building:
34        ctx.recurse(b)
35
36def install(ctx):
37    for b in building:
38        ctx.recurse(b)
Note: See TracBrowser for help on using the repository browser.