Biggest change to Jinja since the 1.x migration: added evaluation contexts
[jinja2.git] / Makefile
index 6622bd10d14235c2f67e9d6928da05622ea9c42b..60ca1d7a081afce88003b1f47d76fcfcbe5e0c04 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,27 +1,4 @@
-#
-# 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)
+       python setup.py test
 
-pylint:
-       @pylint --rcfile scripts/pylintrc jinja
+.PHONY: test