blob: 986833f6f686582e6e14affa4b19fa2979bd7498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TARGET = gymnasiearbete
PIO = platformio
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
|