mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 11:29:16 +08:00

To use: 1. Install aspell 2. waf spell <list of files> * waf spell mydoc.rst * waf spell *.rst This uses a custom dictionary stored in common/spell/dict/. We should add all RTEMS and programming terms to this to ensure we are consistent. Amar.
12 lines
218 B
Python
12 lines
218 B
Python
from sys import path
|
|
from os.path import abspath
|
|
path.append(abspath('../common/'))
|
|
|
|
from waf import cmd_configure, cmd_build, spell, cmd_spell
|
|
|
|
def configure(ctx):
|
|
cmd_configure(ctx)
|
|
|
|
def build(ctx):
|
|
cmd_build(ctx)
|