diff options
author | INADA Naoki <inada-n@klab.com> | 2013-02-26 14:23:08 +0900 |
---|---|---|
committer | INADA Naoki <inada-n@klab.com> | 2013-02-26 14:23:08 +0900 |
commit | b588e8cec6f5055351fb663bfddcf7a2a4aa9f9a (patch) | |
tree | da3f0becce56dc409c076e9cf80d70e9cd94e6c1 /Makefile | |
parent | f1dcf4ef55a375c3cd1cd5d6aea4ad62b68be4cd (diff) | |
parent | d2feb1362946c87609e3753a058ddbd0958ee0bd (diff) | |
download | msgpack-python-next-marker.tar.gz |
Merge branch 'master' into next-markernext-marker
Conflicts:
msgpack/fallback.py
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -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 |