From: Luke Kenneth Casson Leighton Date: Sat, 8 Jun 2019 05:52:29 +0000 (+0100) Subject: use PYTHON3 ?= "python3" instead of hard-coded python3 cmd X-Git-Tag: ls180-24jan2020~995 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c66d78c6f7c27c4c76b7ce7c3f719f17aec13aa3;p=ieee754fpu.git use PYTHON3 ?= "python3" instead of hard-coded python3 cmd --- diff --git a/Makefile b/Makefile index 185a0d22..c32d0657 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ +PYTHON3 ?= "python3" gitupdate: git submodule init git submodule update --recursive install: - python3 setup.py develop # yes, develop, not install + $(PYTHON3) setup.py develop # yes, develop, not install test: - python3 setup.py test # could just run nosetest3... + $(PYTHON3) setup.py test # could just run nosetest3...