1952be65dc
- Python 2.7 is planned to be the last of the 2.x releases - It's generally advised to use Python 3 - Majority of python/ scripts are already switched python3 - Users with python 2 only can still use: $ make PYTHON=/usr/bin/python .... Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
14 lines
246 B
Makefile
14 lines
246 B
Makefile
PYTHON ?= python3
|
|
|
|
clean:
|
|
rm -f *~ *.pyc
|
|
rm -f parser.out parsetab.py
|
|
rm -f out.txt
|
|
rm -f module_compile_test.fc
|
|
rm -f module_compile_test.if
|
|
rm -f module_compile_test.pp
|
|
rm -f output
|
|
rm -rf __pycache__ tmp
|
|
|
|
test:
|
|
$(PYTHON) run-tests.py
|