projects
/
ieee754fpu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ba19cf
)
use PYTHON3 ?= "python3" instead of hard-coded python3 cmd
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sat, 8 Jun 2019 05:52:29 +0000
(06:52 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sat, 8 Jun 2019 05:52:29 +0000
(06:52 +0100)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index 185a0d223124d60253041a59d1f53835adc84df3..c32d0657641e3d49590c649dd78db0f4de7e9113 100644
(file)
--- 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...