update for upload to pypi
[ieee754fpu.git] / Makefile
1 PYTHON3 ?= "python3"
2
3 gitupdate:
4 git submodule init
5 git submodule update --recursive
6
7 install:
8 $(PYTHON3) setup.py develop # yes, develop, not install
9
10 test:
11 $(PYTHON3) setup.py test # could just run nosetest3...
12
13 pypiupload:
14 $(PYTHON3) setup.py sdist upload