8 lines
82 B
Makefile
8 lines
82 B
Makefile
.PHONY: clean
|
|
clean:
|
|
rm -f templates/*.py
|
|
|
|
.PHONY: run
|
|
run:
|
|
micropython main.py
|