Makefile 112 B

12345678910111213
  1. upload:
  2. pio run --target upload
  3. build:
  4. pio run
  5. clean:
  6. pio run --target clean
  7. .PHONY: clean build upload