summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-02-10 14:57:29 -0500
committernfoy <nfoy@purdue.edu>2014-02-10 14:57:29 -0500
commit4516081d2d508aa4406eef35e9faae5f948a2317 (patch)
tree977426953d3f90ef89fa79703a7968e265aea810 /docs/Makefile
parent341b315fa05362a2cfeac8f83efd7c414408290c (diff)
parent547268b749cfcb273e04fc78c2ad2fc693238be6 (diff)
small change to 4.2
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 7a239c4..4f236d4 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -1,10 +1,10 @@
-docs = ProductBacklog ProjectCharter ProjectLeaguerWorkloadBreakup
+docs = ProductBacklog ProjectCharter ProjectLeaguerWorkloadBreakup DesignDocument
pdf: $(addsuffix .pdf,$(docs))
html: $(addsuffix .html,$(docs))
%.pdf: %.md Makefile
- pandoc -s $< -o $@
+ pandoc $($@.args) -s $< -o $@
%.html: %.md Makefile
pandoc -s $< -o $@
%.png: %.dot Makefile
@@ -13,5 +13,8 @@ html: $(addsuffix .html,$(docs))
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