summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2013-02-26 14:23:08 +0900
committerINADA Naoki <inada-n@klab.com>2013-02-26 14:23:08 +0900
commitb588e8cec6f5055351fb663bfddcf7a2a4aa9f9a (patch)
treeda3f0becce56dc409c076e9cf80d70e9cd94e6c1 /Makefile
parentf1dcf4ef55a375c3cd1cd5d6aea4ad62b68be4cd (diff)
parentd2feb1362946c87609e3753a058ddbd0958ee0bd (diff)
downloadmsgpack-python-next-marker.tar.gz
Merge branch 'master' into next-markernext-marker
Conflicts: msgpack/fallback.py
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1e0a00f..0e102e7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,19 @@
.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
+
+doc:
+ cd docs && make zip
+
+cython:
+ cython msgpack/*.pyx
+
+python3: cython
python3 setup.py build_ext -i -f
- python3 setup.py build sdist
test:
py.test test