summaryrefslogtreecommitdiff
path: root/docs/Makefile
blob: 7a239c4844d224ed471e20f79edbef700d636071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
docs = ProductBacklog ProjectCharter ProjectLeaguerWorkloadBreakup

pdf: $(addsuffix .pdf,$(docs))
html: $(addsuffix .html,$(docs))

%.pdf: %.md Makefile
	pandoc -s $< -o $@
%.html: %.md Makefile
	pandoc -s $< -o $@
%.png: %.dot Makefile
	dot -Tpng < $< > $@

ProductBacklog.pdf: SystemModel.png
SystemModel.png: stickman.png

clean:
	rm -f -- *.pdf *.html