.PHONY: all all: @echo "Nothing to be done for 'all'" .PHONY: distr distr: ./mk-distr .PHONY: html html: $(MAKE) -C docs html $(MAKE) -C docs-ru html .PHONY: test test: $(MAKE) -C tests .PHONY: tests tests: test .PHONY: clean clean: find . -name '*.py[co]' -type f -delete