msgpack-python/Makefile

33 lines
642 B
Makefile
Raw Normal View History

2010-09-02 09:54:38 +09:00
.PHONY: test all python3
2013-02-26 09:20:44 +09:00
all: cython
2010-03-31 17:09:00 +09:00
python setup.py build_ext -i -f
2009-06-29 11:21:28 +09:00
2013-02-26 09:20:44 +09:00
doc-serve: all
cd docs && make serve
2013-02-26 09:49:25 +09:00
doc:
cd docs && make zip
2013-10-21 01:47:54 +09:00
upload-doc:
python setup.py upload_docs --upload-dir docs/_build/html
2013-02-26 09:20:44 +09:00
cython:
2013-05-19 01:13:21 +09:00
cython --cplus msgpack/*.pyx
2013-02-26 09:20:44 +09:00
python3: cython
2010-09-02 09:54:38 +09:00
python3 setup.py build_ext -i -f
2009-06-29 11:21:28 +09:00
test:
2012-12-29 11:28:28 +09:00
py.test test
.PHONY: clean
clean:
rm -rf build
rm msgpack/*.so
rm -rf msgpack/__pycache__
2016-07-30 11:38:00 +09:00
2016-07-30 11:35:26 +09:00
build-manylinux1-wheel:
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh