source:
rtems-docs/rtemsconfig/wscript
@
5daabd2
Last change on this file since 5daabd2 was 5daabd2, checked in by Amar Takhar <amar@…>, on 01/16/16 at 04:41:06 | |
---|---|
|
|
File size: 328 bytes |
Line | |
---|---|
1 | from sys import path |
2 | from os.path import abspath |
3 | path.append(abspath('../common/')) |
4 | |
5 | from waf import cmd_configure, cmd_build |
6 | |
7 | def configure(ctx): |
8 | cmd_configure(ctx) |
9 | |
10 | def build(ctx): |
11 | |
12 | sub = { |
13 | "VERSION": "1.0", |
14 | "RELEASE": "5.0.0", |
15 | "DOC": "RTEMS Config", |
16 | "FILE_DOC": "rtemsconfig", |
17 | } |
18 | |
19 | cmd_build(ctx, sub) |
Note: See TracBrowser
for help on using the repository browser.