aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2024-01-18 19:09:58 +0100
committerMatěj Cepl <mcepl@cepl.eu>2024-01-18 19:09:58 +0100
commitcc7362d28bd9c43cb6839809f86e59874f2fe458 (patch)
tree1053748f5890c769d1e99806bc0c8bcffca6f0fe /Makefile
parent003bd13629d9db2f14156f97b74a4672e9ecdf77 (diff)
downloadbugseverywhere-cc7362d28bd9c43cb6839809f86e59874f2fe458.tar.gz
2to3 conversion of the repo.
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: