summaryrefslogtreecommitdiff
path: root/Makefile
blob: edaf7fabfc166fef21145693284b33cbf03ee726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.SUFFIXES: .html .mdwn .pdf .dot .svg

all: ci-arch.html ci-arch.pdf

ci-arch.pdf ci-arch.html: ci-arch.mdwn ecosystem.svg pipeline.svg

.dot.svg:
	dot -Tsvg -o$@ $<

.mdwn.html:
	pandoc --standalone --toc -o $@ $< 

.mdwn.pdf:
	pandoc -f markdown+implicit_figures -Vdocumentclass:report --toc -o $@ $<