Skip to content

Makefile

Symbols

  • $<: first dep
  • $@: target

Common Snippets

PYFILES := $(shell find scripts/ src/ -name "*.py")

check:
    ck $(PYFILES)

link-venv:
    ln -s $(shell poetry env info --path) .venv