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

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

%.pdf: %.md Makefile
	pandoc -s $< -o $@
%.html: %.md Makefile
	pandoc -s $< -o $@

ProductBacklog.pdf: Diagram01.jpg

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