summaryrefslogtreecommitdiffstats
path: root/docs/Makefile
blob: 83c1d0162dc1e5ae9a446b18416fccbc20f17130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PANDOC=$(shell which pandoc)
OPTS=-s --smart --toc

all: pdf html

pdf: manual.pdf

html: manual.html

clean:
	rm -f manual.pdf manual.html

manual.pdf: manual.md
	$(PANDOC) $(OPTS) manual.md z-changes-*.md -o manual.pdf

manual.html: manual.md style.css
	$(PANDOC) $(OPTS) manual.md z-changes-*.md -H webfonts.html -c style.css -o manual.html

ifeq ($(PANDOC),)
	$(warning Pandoc not found!)
endif