summaryrefslogtreecommitdiff
path: root/Makefile
blob: b5d82692241a2a36c45bced10047e94923452694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TARGET = gyronardo

PIO = pio

all: $(TARGET)

.PHONY: $(TARGET) upload clean monitor

$(TARGET):
	$(PIO) run -v
	$(PIO) run --target compiledb

upload:
	$(PIO) run --target upload

clean:
	$(PIO) run --target clean

monitor:
	$(PIO) run --target monitor