summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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