summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 15:06:54 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 15:06:54 -0500
commitb677983475513c78108406901fccd5cbe9604ca6 (patch)
treef83b5e20930cbe1be890af41ea1d0c0d2ebf5e2e /docs/Makefile
parent4e682a9a8596326a2d1faab6c44e5a54918c5ba0 (diff)
parent1bfc0513fa113f5b4a61e89d74e42dd78ece44e7 (diff)
Merge branch 'master' of http://github.com/LukeShu/leaguer
Conflicts: Gemfile.lock app/views/layouts/application.html.erb config/routes.rb
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: