Makefile 252 Bytes
Newer Older
Enrico Pozzobon committed
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: uno

uno: .pioenvs/uno/firmware.hex

.pioenvs/uno/firmware.hex: FORCE
	platformio run -e uno

FORCE: ;
.PHONY: clean

clean: 
	-rm .pioenvs/uno/firmware.hex