Skip to content
Snippets Groups Projects
Commit c5eff591 authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

Changed Makefile to allow using 'python3' instead of 'python'

parent cbe767eb
No related branches found
No related tags found
No related merge requests found
prefix = /usr/local
PYTHON = python
all:
clean:
......@@ -11,13 +13,13 @@ distclean: clean
doc: doc/mkexp.pdf
check:
python test.py -v
$(PYTHON) test.py -v
dist: doc
python setup.py sdist
$(PYTHON) setup.py sdist
install: doc
python setup.py install --prefix=$(prefix)
$(PYTHON) setup.py install --prefix=$(prefix)
.PHONY: all clean distclean doc check dist install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment