summaryrefslogtreecommitdiff
path: root/docs/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
commitfaa08e4f2dbc6fb37619df7375638c1a7749ef80 (patch)
tree2c09aeddb97a6aaea7722795ec49ab7d45569b12 /docs/Makefile
parent11be92e4bac671852fd03922049ca592ae4c9f4e (diff)
mv docs doc
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/Makefile b/docs/Makefile
deleted file mode 100644
index 469b1a2..0000000
--- a/docs/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-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: