source: rtems-docs/develenv/wscript @ f4defea

4.115
Last change on this file since f4defea was 5daabd2, checked in by Amar Takhar <amar@…>, on 01/16/16 at 04:41:06

Initial reST documentation using Sphinx.

  • Property mode set to 100644
File size: 341 bytes
RevLine 
[5daabd2]1from sys import path
2from os.path import abspath
3path.append(abspath('../common/'))
4
5from waf import cmd_configure, cmd_build
6
7def configure(ctx):
8        cmd_configure(ctx)
9
10def build(ctx):
11
12        sub = {
13                "VERSION":                              "1.0",
14                "RELEASE":                              "5.0.0",
15                "DOC":                                  "Development Environment",
16                "FILE_DOC":                             "rtemsdevelenv",
17        }
18
19        cmd_build(ctx, sub)
Note: See TracBrowser for help on using the repository browser.