Skip to content

Commit

Permalink
add build cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
PyYoshi committed Jan 8, 2017
1 parent 2fcf721 commit 9eb83bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit 9eb83bd

Please sign in to comment.