summaryrefslogtreecommitdiff
path: root/doc/Makefile
blob: 8759a4ca3e2e9c8c6d4364a704cd3b5b3185392c (plain)
1
2
3
4
5
6
7
8
9
10
11
yarns = 000.yaml $(shell ls *.yarn)

all: doc.pdf doc.html

doc.pdf: $(yarns)
	pandoc --smart --toc --chapters --number-sections \
		-o $@ $(yarns)

doc.html: $(yarns)
	pandoc --smart --toc --chapters --number-sections --standalone \
		-o $@ $(yarns)