summaryrefslogtreecommitdiffstats
path: root/eng/conf.py
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-11-21 10:39:04 -0600
committerJoel Sherrill <joel@rtems.org>2018-12-17 18:34:29 -0600
commit1ae5e889fbf6e5e134402ab9fbdf5878dd9731e8 (patch)
tree36e4e17a9b50ecda6d10ae21ec4c0d743685c967 /eng/conf.py
parentIntegrate images redrawn as part of GCI 2018 (diff)
downloadrtems-docs-1ae5e889fbf6e5e134402ab9fbdf5878dd9731e8.tar.bz2
Initial start of converting the Word outline to Rest
Thanks to Scott Zemerick <scott.zemerick@tmctechnologies.com> for the analysis and ideas that led to this.
Diffstat (limited to 'eng/conf.py')
-rw-r--r--eng/conf.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/eng/conf.py b/eng/conf.py
new file mode 100644
index 0000000..a4da3ff
--- /dev/null
+++ b/eng/conf.py
@@ -0,0 +1,14 @@
+import sys, os
+sys.path.append(os.path.abspath('../common/'))
+
+from conf import *
+
+project = "RTEMS Software Engineering Handbook"
+
+latex_documents = [
+ ('index',
+ 'software-engineering-handbook.tex',
+ u'RTEMS Software Engineering Handbook',
+ u'RTEMS Documentation Project',
+ 'manual'),
+]