From 9eb83bd5152a25d830077313e6f40df8c1901a5d Mon Sep 17 00:00:00 2001 From: PyYoshi Date: Sun, 8 Jan 2017 12:17:58 +0900 Subject: [PATCH] add build cmd --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d167b56..abd0d6f 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ test: clean: $(RM) -r build dist src/cchardet/__pycache__ src/cchardet/*.cpp src/cchardet/*.pyc src/cchardet/*.so src/cchardet.egg-info src/tests/__pycache__ src/tests/*.pyc -sdist: clean +sdist: python setup.py sdist pip: @@ -20,3 +20,5 @@ install: clean build-manylinux1-wheel: docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash dockerfiles/buildwheel.sh docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash dockerfiles/buildwheel.sh + +build: clean pip test sdist build-manylinux1-wheel