chiark
/
gitweb
/
~mdw
/
catacomb-python
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
7a24b27ac93c6dbc15f7b5656d1930617c2f088f
[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