Some checks are pending
ci / markdown (push) Waiting to run
source/ is the Sphinx tree. Companion PDF hrefs are relative, not Markdown.
12 lines
439 B
Makefile
12 lines
439 B
Makefile
SPHINXBUILD ?= sphinx-build
|
|
SOURCEDIR = source
|
|
BUILDDIR = build
|
|
PDFNAME = peergos-making-yourself-audit-ready-with-verae-datacubes
|
|
|
|
.PHONY: html latexpdf all
|
|
html:
|
|
$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)/html"
|
|
latexpdf:
|
|
$(SPHINXBUILD) -b latex "$(SOURCEDIR)" "$(BUILDDIR)/latex"
|
|
cd "$(BUILDDIR)/latex" && pdflatex -interaction=nonstopmode $(PDFNAME).tex && pdflatex -interaction=nonstopmode $(PDFNAME).tex
|
|
all: html latexpdf
|