summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-01-29 13:02:18 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-01-29 13:02:18 -0500
commit36dcfd8a2bae87e841694b89bae0ac6be3849c5f (patch)
treee6a0929d951c5286d6528e9ac46aba32a15c15b7 /docs/Makefile
parent103a6003b588790c7fa0f13e8432d0625611ddba (diff)
Use markdown for all the things
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile14
1 files changed, 14 insertions, 0 deletions
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