source: rtems-docs/c_user/wscript @ f916fca

4.115
Last change on this file since f916fca was f916fca, checked in by Amar Takhar <amar@…>, on 01/18/16 at 22:53:44

Add support for spellchecking with a custom dictionary.

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.

  • Property mode set to 100644
File size: 218 bytes
Line 
1from sys import path
2from os.path import abspath
3path.append(abspath('../common/'))
4
5from waf import cmd_configure, cmd_build, spell, cmd_spell
6
7def configure(ctx):
8        cmd_configure(ctx)
9
10def build(ctx):
11        cmd_build(ctx)
Note: See TracBrowser for help on using the repository browser.