summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2008-07-17 23:26:14 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2008-07-17 23:26:14 +0200
commitd43f926cffff7da1e7cafda43b9ccce80e1e6224 (patch)
tree4c73ce4955f8d32029a9c75888551c4da2bf2a1d /Makefile
parenta6fb90cb1f13aaa1fe9ec44153c5133863d22e31 (diff)
downloadjinja2-d43f926cffff7da1e7cafda43b9ccce80e1e6224.tar.gz
make -> fab
--HG-- branch : trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 6622bd1..0000000
--- a/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# Jinja Makefile
-# ~~~~~~~~~~~~~~
-#
-# Shortcuts for various tasks.
-#
-# :copyright: 2007 by Armin Ronacher.
-# :license: BSD, see LICENSE for more details.
-#
-
-test:
- @(cd tests; py.test $(TESTS))
-
-test-coverage:
- @(cd tests; py.test -C $(TESTS))
-
-html-documentation:
- @(cd docs; make html)
-
-pdf-documentation:
- @(cd docs; make latex; cd _build/latex; make all-pdf)
-
-webpage:
- @(cd ../www; ./generate.py)
-
-pylint:
- @pylint --rcfile scripts/pylintrc jinja