mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
16 lines
213 B
Makefile
16 lines
213 B
Makefile
.PHONY: test all python3
|
|
|
|
all: cython
|
|
python setup.py build_ext -i -f
|
|
|
|
doc-serve: all
|
|
cd docs && make serve
|
|
|
|
cython:
|
|
cython msgpack/*.pyx
|
|
|
|
python3: cython
|
|
python3 setup.py build_ext -i -f
|
|
|
|
test:
|
|
py.test test
|