mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 23:19:35 +08:00
14 lines
390 B
Python
14 lines
390 B
Python
from common.waf import cmd_configure as configure
|
|
from common.waf import cmd_build as doc_build
|
|
from common.waf import cmd_options as options
|
|
from common.waf import spell
|
|
from common.waf import cmd_spell
|
|
from common.waf import linkcheck
|
|
from common.waf import cmd_linkcheck
|
|
|
|
def build(ctx):
|
|
sources = {
|
|
'exclude' : ['apps/index.rst']
|
|
}
|
|
doc_build(ctx, sources = sources)
|