update for upload to pypi
[ieee754fpu.git] / Makefile
index 0a291687b3449c646680206cecd532c4b2bc63c3..5ddf6b68756053a3ccf7e0c0bdbd8266d717755f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,14 @@
+PYTHON3 ?= "python3"
+
 gitupdate:
        git submodule init
        git submodule update --recursive
+
+install:
+       $(PYTHON3) setup.py develop # yes, develop, not install
+
+test:
+       $(PYTHON3) setup.py test # could just run nosetest3...
+
+pypiupload:
+       $(PYTHON3) setup.py sdist upload