Files
stevenhowes 6df4535ed5 Working code
2022-03-08 20:17:16 +00:00

21 lines
236 B
Makefile

.DEFAULT_GOAL := install
fmt:
go mod tidy
go fmt ./...
.PHONY:fmt
lint: fmt
golint ./...
.PHONY:lint
vet: fmt
# Need to work this out for tinygo..
# go vet ./...
.PHONY:vet
install: vet
tinygo flash -target=pico
.PHONY:install