1PYTHON ?= python3 2 3clean: 4 rm -f *~ *.pyc 5 rm -f parser.out parsetab.py 6 rm -f out.txt 7 rm -f module_compile_test.fc 8 rm -f module_compile_test.if 9 rm -f module_compile_test.pp 10 rm -f output 11 rm -rf __pycache__ tmp 12 13test: 14 $(PYTHON) run-tests.py 15