diff --git a/Makefile b/Makefile index 911c488..a805fc3 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,10 @@ MICRO_PYTHON_FIRMWARE = ESP8266_GENERIC-20240222-v1.22.2.bin ESP_PORT = /dev/ttyUSB0 src/%.mpy: src/%.py - $(MPYCROSS) $< + @for f in $?; do \ + echo Compile $$f; \ + $(MPYCROSS) $$f; \ + done check: src/*.mpy $(VENV) python3 -m py_compile src/*.py