summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 6 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index 7d4dd23..d1a0e8a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,12 @@
BUILDDIR := build
-.PHONY: clean html pdf default
+.PHONY: default clean
-default: pdf
-
-clean:
- rm -rf $(BUILDDIR) plantuml.jar
-
-html: plantuml.jar | $(BUILDDIR)
- sphinx-build -b html -c etc -d $(BUILDDIR)/doctrees \
- requirements $(BUILDDIR)/requirements/html
-
-pdf: plantuml.jar | $(BUILDDIR)
- sphinx-build -b latex -c etc -d $(BUILDDIR)/doctrees \
- requirements $(BUILDDIR)/requirements/latex
- $(MAKE) -C $(BUILDDIR)/requirements/latex \
- LATEXOPTS='--interaction=nonstopmode' all-pdf
-
-$(BUILDDIR):
- mkdir -p $(BUILDDIR)
+default: plantuml.jar
+ tox
plantuml.jar:
wget 'http://downloads.sourceforge.net/project/plantuml/plantuml.jar'
+
+clean:
+ rm -rf .tox build plantuml.jar