PHONY=check clean dist distclean test test-unit test-functional rmChangeLog clean_pyc nosetests GIT2CL ?= git2cl PYTHON ?= python # Set COMILE='--compile' to force compilation before check COMPILE ?= #: Run all tests check: check-short check-2.7-ok #: Run quick tests check-short: $(PYTHON) test_pythonlib.py --base2 --verify $(COMPILE) #: Run longer Python 2.7's lib files known to be okay check-2.7-ok: $(PYTHON) test_pythonlib.py --ok-2.7 --verify $(COMPILE) clean: find . -name '*_dis' -exec rm -v '{}' ';'