summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2018-10-03 20:55:51 +0900
committerInada Naoki <songofacandy@gmail.com>2018-11-08 20:27:35 +0900
commitf6f95972492bcb83d8fe4c63be3b96d46e47bab7 (patch)
treee0003078b772d6c0e3a22862f8494bb723388a97 /Makefile
parent91ec9e1daf5cc915a47e2b356a7b1dd9662573a3 (diff)
downloadmsgpack-python-f6f95972492bcb83d8fe4c63be3b96d46e47bab7.tar.gz
Merge extension module
There were `_packer.so` and `_unpacker.so`. But single module is simpler than double module. Merge extension module into single `_msgpack.so`.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 124f243..ff9a482 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ all: cython
.PHONY: cython
cython:
- cython --cplus msgpack/*.pyx
+ cython --cplus msgpack/_msgpack.pyx
.PHONY: test
test:
@@ -18,8 +18,7 @@ serve-doc: all
.PHONY: clean
clean:
rm -rf build
- rm -f msgpack/_packer.cpp
- rm -f msgpack/_unpacker.cpp
+ rm -f msgpack/_msgpack.cpp
rm -rf msgpack/__pycache__
rm -rf test/__pycache__