all: tracker

tracker: */*.go *.go
	go build -o $@

format:
	gofmt -s -w .

update:
	go get -u
	go mod tidy

.PHONY: format update