chiark / gitweb /
build: Use mdwsetup.py from new CFD. Announce 1.0.2.
[catacomb-python] / Makefile
1 ## Makefile
2
3 PYTHON = python
4 prefix = /usr/local
5
6 GEN = algorithms.h
7
8 all: setup.py
9         $(PYTHON) setup.py build
10
11 clean: setup.py
12         $(PYTHON) setup.py clean
13         rm -rf build $(GEN)
14
15 dist: setup.py
16         $(PYTHON) setup.py sdist
17
18 install: setup.py
19         $(PYTHON) setup.py install --prefix $(prefix)
20
21 .PHONY: all clean dist install