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

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

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

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

DesignDocument.pdf: DesignDocument.png
DesignDocument.pdf.args = --table-of-contents --number-sections -f markdown+definition_lists

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