summaryrefslogtreecommitdiffstats
path: root/bsp_howto
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-19 00:27:45 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:24 -0400
commit9b5801a6e6c80379b79a799a9484cfefb4cebec3 (patch)
tree25e3547fd647701b03cc2bab4164bfeb29e2dc64 /bsp_howto
parentAdd .svg logos for RTEMS that I made myself. (diff)
downloadrtems-docs-9b5801a6e6c80379b79a799a9484cfefb4cebec3.tar.bz2
Add PDF generation support use with --pdf
Diffstat (limited to 'bsp_howto')
-rw-r--r--bsp_howto/conf.py4
-rw-r--r--bsp_howto/wscript7
2 files changed, 5 insertions, 6 deletions
diff --git a/bsp_howto/conf.py b/bsp_howto/conf.py
index 5e042a7..722d2f5 100644
--- a/bsp_howto/conf.py
+++ b/bsp_howto/conf.py
@@ -6,3 +6,7 @@ from conf import *
version = '1.0'
release = '5.0'
+latex_documents = [
+ ('index', 'bsp_howto.tex', u'RTEMS BSP Howto Documentation', u'RTEMS Documentation Project', 'manual'),
+]
+
diff --git a/bsp_howto/wscript b/bsp_howto/wscript
index 0565c4b..8d66b28 100644
--- a/bsp_howto/wscript
+++ b/bsp_howto/wscript
@@ -2,10 +2,5 @@ from sys import path
from os.path import abspath
path.append(abspath('../common/'))
-from waf import cmd_configure, cmd_build, spell, cmd_spell
+from waf import cmd_configure as configure, cmd_build as build, spell, cmd_spell, cmd_options as options
-def configure(ctx):
- cmd_configure(ctx)
-
-def build(ctx):
- cmd_build(ctx)