mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 04:29:18 +08:00
20 lines
328 B
Python
20 lines
328 B
Python
from sys import path
|
|
from os.path import abspath
|
|
path.append(abspath('../common/'))
|
|
|
|
from waf import cmd_configure, cmd_build
|
|
|
|
def configure(ctx):
|
|
cmd_configure(ctx)
|
|
|
|
def build(ctx):
|
|
|
|
sub = {
|
|
"VERSION": "1.0",
|
|
"RELEASE": "5.0.0",
|
|
"DOC": "BSP Howto",
|
|
"FILE_DOC": "rtemsbsp_howto",
|
|
}
|
|
|
|
cmd_build(ctx, sub)
|