chiark
/
gitweb
/
~mdw
/
mLib-python
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Announce 1.0.2.
[mLib-python]
/
Makefile
1
## Makefile
2
3
PYTHON = python
4
prefix = /usr/local
5
6
GEN = base64.pyx base32.pyx hex.pyx
7
8
all: setup.py
9
$(PYTHON) setup.py build
10
11
clean: setup.py
12
$(PYTHON) setup.py clean
13
rm -rf build
14
rm -f mLib.c $(GEN) MANIFEST
15
16
dist: setup.py
17
$(PYTHON) setup.py sdist
18
19
install: setup.py
20
$(PYTHON) setup.py install --prefix $(prefix)
21
22
.PHONY: all clean dist install