Makefile
277 Bytes
NISTGCCFLAGS=-std=c99 -Wall -Wextra -Wshadow -fsanitize=address,undefined -O2
LFLAGS=-lm
all: esp32dev
esp32dev: .pioenvs/esp32dev/firmware.hex
.pioenvs/esp32dev/firmware.hex: FORCE
platformio run -e esp32dev
FORCE: ;
.PHONY: clean
clean:
-rm .pioenvs/uno/firmware.hex