[svn] added doc notes to the installation instructions
[jinja2.git] / Makefile
1 #
2 # Jinja Makefile
3 # ~~~~~~~~~~~~~~
4 #
5 # Shortcuts for various tasks.
6 #
7 # :copyright: 2007 by Armin Ronacher.
8 # :license: BSD, see LICENSE for more details.
9 #
10
11 test:
12         @(cd tests; py.test $(TESTS))
13
14 documentation:
15         @(cd docs; ./generate.py)
16
17 webpage:
18         @(cd ../www; ./generate.py)
19
20 release: documentation
21         @(python2.3 setup.py release bdist_egg upload; python2.4 setup.py release bdist_egg upload; python2.5 setup.py release bdist_egg sdist upload)