mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-13 23:59:16 +08:00
20 lines
330 B
Python
20 lines
330 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": "Release Notes",
|
|
"FILE_DOC": "rtemrelnotes",
|
|
}
|
|
|
|
cmd_build(ctx, sub)
|