aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fe62840..9d2993b 100644
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,7 @@ SHELL = /bin/bash
RM = /bin/rm
RST2MAN = /usr/bin/rst2man
RST2HTML = /usr/bin/rst2html
+PYTHON = /usr/bin/python3
#PATH = /usr/bin:/bin # must include sphinx-build for 'sphinx' target.
@@ -59,17 +60,17 @@ all: build
.PHONY: build
build: $(LIBBE_VERSION)
- python setup.py build
+ $(PYTHON) setup.py build
.PHONY: doc
doc: $(DOC)
.PHONY: install
install: build doc
- python setup.py install ${INSTALL_OPTIONS}
+ $(PYTHON) setup.py install ${INSTALL_OPTIONS}
test: build
- python test.py
+ $(PYTHON) test.py
.PHONY: clean
clean: