summaryrefslogtreecommitdiff
path: root/docs/Makefile
blob: 91dc99c5581c476f08b13e42fc49b5eec8c8f36b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DIAS = $(wildcard images/*.dia)
DIA_SVGS = $(patsubst %.dia,%.svg,$(DIAS))

all: _build

images/%.svg: images/%.dia
	dia $< --export=$@ --filter=dia-svg

_build: Makefile *.rst devguide/*.rst guide/*.rst conf.py images/*.png $(DIA_SVGS) ../README.rst ../NEWS
	sphinx-build -b html . _build

linkcheck:
	sphinx-build -b linkcheck -n . _build

clean:
	rm -R _build