diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 12 | ||||
-rw-r--r-- | etc/conf.py | 2 |
3 files changed, 5 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ @@ -12,15 +12,9 @@ bps: $(DESIGN_DOCS) | $(BUILDDIR) mkdir -p $(BUILDDIR)/design_docs $(foreach f,$(DESIGN_DOCS),rst2html.py $(f) $(BUILDDIR)/$(f:.rst=.html);) -html: | $(BUILDDIR) - sphinx-build -b html -c etc -d $(BUILDDIR)/doctrees \ - requirements $(BUILDDIR)/requirements/html - -pdf: | $(BUILDDIR) - sphinx-build -b latex -c etc -d $(BUILDDIR)/doctrees \ - requirements $(BUILDDIR)/requirements/latex - $(MAKE) -C $(BUILDDIR)/requirements/latex \ - LATEXOPTS='--interaction=nonstopmode' all-pdf +bps: $(DESIGN_DOCS) | $(BUILDDIR) + mkdir -p $(BUILDDIR)/design_docs + $(foreach f,$(DESIGN_DOCS),rst2html.py $(f) $(BUILDDIR)/$(f:.rst=.pdf);) $(BUILDDIR): mkdir -p $(BUILDDIR) diff --git a/etc/conf.py b/etc/conf.py index e1303e8..8ad1249 100644 --- a/etc/conf.py +++ b/etc/conf.py @@ -18,7 +18,7 @@ master_doc = 'index' pygments_style = 'sphinx' html_use_index = False -pdf_documents = [('index', u'Doctor', u'Doctor Project', u'OPNFV')] +pdf_documents = [('index', u'Copper', u'Copper Project', u'OPNFV')] pdf_fit_mode = "shrink" pdf_stylesheets = ['sphinx','kerning','a4'] #latex_domain_indices = False |