From 3ce005cf377eaeb5a517ce82698e4ae4381e67b9 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Tue, 26 Feb 2013 09:20:44 +0900 Subject: better packer docstring --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 875a3f6..da17b81 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,16 @@ .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 + +cython: + cython msgpack/*.pyx + +python3: cython python3 setup.py build_ext -i -f - python3 setup.py build sdist test: py.test test -- cgit v1.2.1 From 8e13598a36cbf56992454a04e1c4e92e4cfb15b8 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Tue, 26 Feb 2013 09:49:25 +0900 Subject: docs: better unpacker docstring. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index da17b81..3fe278e 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,9 @@ all: cython doc-serve: all cd docs && make serve +doc: + cd docs && make zip + cython: cython msgpack/*.pyx -- cgit v1.2.1