20 lines
269 B
Makefile
20 lines
269 B
Makefile
# Uncomment lines below if you have problems with $PATH
|
|
#SHELL := /bin/bash
|
|
#PATH := /usr/local/bin:$(PATH)
|
|
|
|
all:
|
|
pio run
|
|
|
|
upload:
|
|
pio run --target upload
|
|
|
|
clean:
|
|
pio run --target clean
|
|
|
|
program:
|
|
pio run --target program
|
|
|
|
db:
|
|
pio run -t compiledb
|
|
|