Fixed the install docs.
[jinja2.git] / Makefile
index 8fcff87620ca2eadf73d5821d19943fc8491a56c..6cd734ae4b627fa393951783d551779b903bed21 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,11 @@
-#
-# Jinja Makefile
-# ~~~~~~~~~~~~~~
-#
-# Shortcuts for various tasks.
-#
-# :copyright: 2007 by Armin Ronacher.
-# :license: BSD, see LICENSE for more details.
-#
-
 test:
-       @(cd tests; py.test $(TESTS))
-
-documentation:
-       @(cd docs; ./generate.py)
+       cd tests; nosetests -v
 
-webpage:
-       @(cd ../www; ./generate.py)
+2to3:
+       rm -rf py3k
+       mkdir py3k
+       cp -R jinja2 py3k
+       2to3 jinja2 > py3k/convert.patch
+       cd py3k; patch -p0 < convert.patch
 
-release:
-       @(python2.3 setup.py release bdist_egg; python2.4 setup.py release bdist_egg; python2.5 setup.py release bdist_egg sdist)
+.PHONY: test