.PHONY: build test lint clean BIN := rsw build: go build -o $(BIN) . test: go test ./... -count=1 lint: golangci-lint run ./... clean: rm -f $(BIN)