msgpack-python/Makefile
2013-02-26 09:49:25 +09:00

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