mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
19 lines
240 B
Makefile
19 lines
240 B
Makefile
.PHONY: test all python3
|
|
|
|
all: cython
|
|
python setup.py build_ext -i -f
|
|
|
|
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
|
|
|
|
test:
|
|
py.test test
|