From 36dcfd8a2bae87e841694b89bae0ac6be3849c5f Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 29 Jan 2014 13:02:18 -0500 Subject: Use markdown for all the things --- docs/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/Makefile (limited to 'docs/Makefile') diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..277c18a --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,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 -- cgit v1.2.3