Initial reST documentation using Sphinx.

This commit is contained in:
Amar Takhar
2016-01-15 23:41:06 -05:00
committed by Amar Takhar
commit 5daabd23cf
109 changed files with 92496 additions and 0 deletions

1
porting/index.rst Normal file
View File

@@ -0,0 +1 @@
.. include:: porting.rst

1916
porting/porting.rst Normal file

File diff suppressed because it is too large Load Diff

19
porting/wscript Normal file
View File

@@ -0,0 +1,19 @@
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": "POSIX",
"FILE_DOC": "rtemsposix",
}
cmd_build(ctx, sub)