Makefile 222 B

12345678910111213
  1. # Whatever it is you want to do, it should be forwarded to the
  2. # to top-level irectories
  3. PHONY=check all type-check
  4. all: check
  5. MYPYPATH=../../..
  6. #: Static type checking
  7. type-check:
  8. mypy *.py
  9. %:
  10. $(MAKE) -C ../../.. $@