chiark / gitweb /
General: Update for Python 2.5.
[catacomb-python] / Makefile
CommitLineData
d7ab1bab 1## Makefile
2
7dbd1159 3PYTHON = python
46e6ad89 4prefix = /usr/local
d7ab1bab 5
6all: setup.py
7 $(PYTHON) setup.py build
8
9clean: setup.py
10 $(PYTHON) setup.py clean
11 rm -rf build
12
13dist: setup.py
14 $(PYTHON) setup.py sdist
15
16install: setup.py
17 $(PYTHON) setup.py install --prefix $(prefix)
18
46e6ad89 19.PHONY: all clean dist install