summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorTomer Kimia <tkimia@purdue.edu>2014-03-02 11:13:33 -0500
committerTomer Kimia <tkimia@purdue.edu>2014-03-02 11:13:33 -0500
commit7e935b29a44a2c0df22e966b186054e694481b5e (patch)
tree1bc1a6c8483ef56ab402ffb7e0cda2cf05b88959 /doc/Makefile
parentd28c9b6f33ae4a95d620d46caa3799292b39480b (diff)
parent5e11b5212272613367193f90a0a211f4fa08b2af (diff)
Not sure what this merge is... will investigate
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 0000000..469b1a2
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,26 @@
+docs = $(patsubst %.md,%,$(wildcard *.md))
+
+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 < $< > $@
+%.pdf: %.dot Makefile
+ dot -Tpdf < $< > $@
+%.pdf: %.pptx Makefile
+ soffice --headless --convert-to pdf $<
+
+ProductBacklog.pdf: SystemModel.png
+SystemModel.png: stickman.png
+
+DesignDocument.pdf: DesignDocument-architecture-model2.pdf DesignDocument-models.pdf DesignDocument-classes.pdf
+DesignDocument.pdf.args = --table-of-contents --number-sections -f markdown+definition_lists
+
+clean:
+ rm -f -- *.pdf *.html
+
+.DELETE_ON_ERROR: