chiark / gitweb /
Overhaul formatting.
[catacomb-python] / Makefile
CommitLineData
d7ab1bab 1## Makefile
2
7dbd1159 3PYTHON = python
46e6ad89 4prefix = /usr/local
d7ab1bab 5
2286c788
MW
6GEN = algorithms.h
7
d7ab1bab 8all: setup.py
9 $(PYTHON) setup.py build
10
11clean: setup.py
12 $(PYTHON) setup.py clean
2286c788 13 rm -rf build $(GEN)
d7ab1bab 14
15dist: setup.py
16 $(PYTHON) setup.py sdist
17
18install: setup.py
19 $(PYTHON) setup.py install --prefix $(prefix)
20
46e6ad89 21.PHONY: all clean dist install