mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 00:59:17 +08:00
20 lines
326 B
Python
20 lines
326 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": "ADA User",
|
|
"FILE_DOC": "rtemsada_user",
|
|
}
|
|
|
|
cmd_build(ctx, sub)
|