summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 7d4dd2325b24c83fa5dc5a442d702ba26d5e20ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
BUILDDIR := build

.PHONY: clean html pdf default

default: pdf

clean:
	rm -rf $(BUILDDIR) plantuml.jar

html: plantuml.jar | $(BUILDDIR)
	sphinx-build -b html -c etc -d $(BUILDDIR)/doctrees \
	    requirements $(BUILDDIR)/requirements/html

pdf: plantuml.jar | $(BUILDDIR)
	sphinx-build -b latex -c etc -d $(BUILDDIR)/doctrees \
	    requirements $(BUILDDIR)/requirements/latex
	$(MAKE) -C $(BUILDDIR)/requirements/latex \
	    LATEXOPTS='--interaction=nonstopmode' all-pdf

$(BUILDDIR):
	mkdir -p $(BUILDDIR)

plantuml.jar:
	wget 'http://downloads.sourceforge.net/project/plantuml/plantuml.jar'