summaryrefslogtreecommitdiff
path: root/Makefile
blob: 016b2ae34a4bed8cdf684746d9705d05285c5c2b (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
	$(PIO) run --target compiledb

upload:
	$(PIO) run --target upload

clean:
	$(PIO) run --target clean

monitor:
	$(PIO) run --target monitor