source: rtems-docs/porting/wscript @ 7526578

4.115
Last change on this file since 7526578 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: 320 bytes
Line 
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":                                  "POSIX",
16                "FILE_DOC":                             "rtemsposix",
17        }
18
19        cmd_build(ctx, sub)
Note: See TracBrowser for help on using the repository browser.