mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 21:18:23 +01:00
13 lines
190 B
Makefile
13 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
|