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