summaryrefslogtreecommitdiff
path: root/docs/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
commit1bfc0513fa113f5b4a61e89d74e42dd78ece44e7 (patch)
treec9a355875917ae7d85dd3c98d0c94bf3cf3c7c13 /docs/Makefile
parentfbe54253ea8c31796a16d0fb90b7d3b5be717b1c (diff)
parent14b3559962f3e5cd8849bdcdc2de35ffae86621c (diff)
Not sure what this merge is... will investigate
Merge branch 'master' of https://github.com/LukeShu/leaguer
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: