source: rtems-docs/rtemsconfig/wscript @ 11e1a6f

4.115
Last change on this file since 11e1a6f was 3a71759, checked in by Amar Takhar <amar@…>, on 01/18/16 at 05:05:50

Rework how conf.py is handled.

Needed to switch due to increasing complexity.

  • Property mode set to 100644
File size: 283 bytes
Line 
1from sys import path
2from os.path import abspath
3path.append(abspath('../common/'))
4
5from waf import cmd_options_path, cmd_configure_path, cmd_build_path
6
7
8def options(ctx):
9                cmd_options_path(ctx)
10
11def configure(ctx):
12        cmd_configure_path(ctx)
13
14def build(ctx):
15        cmd_build_path(ctx)
16
Note: See TracBrowser for help on using the repository browser.