Add PDF generation support use with --pdf

This commit is contained in:
Amar Takhar
2016-01-19 00:27:45 -05:00
committed by Amar Takhar
parent 0abc59dffc
commit 9b5801a6e6
27 changed files with 119 additions and 83 deletions

View File

@@ -6,3 +6,7 @@ from conf import *
version = '1.0'
release = '5.0'
latex_documents = [
('index', 'porting.tex', u'RTEMS Porting Documentation', u'RTEMS Documentation Project', 'manual'),
]

View File

@@ -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)