mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-12-08 06:09:49 +00:00
12 lines
190 B
Makefile
12 lines
190 B
Makefile
.PHONY: test all python3
|
|
|
|
all:
|
|
python setup.py build_ext -i -f
|
|
python setup.py build sdist
|
|
|
|
python3:
|
|
python3 setup.py build_ext -i -f
|
|
python3 setup.py build sdist
|
|
|
|
test:
|
|
nosetests test
|