tracker/Makefile

10 lines
91 B
Makefile

all: tracker
tracker: */*.go *.go
go build -o $@
format:
gofmt -s -w .
.PHONY: format