You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|