Makefile 277 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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