summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-01 23:18:45 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-01 23:18:45 -0500
commit3ebf232f7c3c085556c7577db9665c33c64defb5 (patch)
tree5a6f9c906a1d90633afc6bf31e10154705975446 /doc/Makefile
parent7d119f1bf59a0b74c212981d52cffb1374701bad (diff)
mv docs doc
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: