summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2013-02-26 09:20:44 +0900
committerINADA Naoki <inada-n@klab.com>2013-02-26 09:20:44 +0900
commit3ce005cf377eaeb5a517ce82698e4ae4381e67b9 (patch)
treeb45eb1353b98b655803df23b8ec2486d0be02ce4 /Makefile
parent1e38bfa1235896f2df5d34211166276b48afa4b9 (diff)
downloadmsgpack-python-3ce005cf377eaeb5a517ce82698e4ae4381e67b9.tar.gz
better packer docstring
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 875a3f6..da17b81 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,16 @@
.PHONY: test all python3
-all:
+all: cython
python setup.py build_ext -i -f
- python setup.py build sdist
-python3:
+doc-serve: all
+ cd docs && make serve
+
+cython:
+ cython msgpack/*.pyx
+
+python3: cython
python3 setup.py build_ext -i -f
- python3 setup.py build sdist
test:
py.test test