mirror of
https://git.rtems.org/rtems-docs/
synced 2025-07-23 08:22:51 +08:00
17 lines
283 B
Python
17 lines
283 B
Python
from sys import path
|
|
from os.path import abspath
|
|
path.append(abspath('../common/'))
|
|
|
|
from waf import cmd_options_path, cmd_configure_path, cmd_build_path
|
|
|
|
|
|
def options(ctx):
|
|
cmd_options_path(ctx)
|
|
|
|
def configure(ctx):
|
|
cmd_configure_path(ctx)
|
|
|
|
def build(ctx):
|
|
cmd_build_path(ctx)
|
|
|