.PHONY: build clean install build: go build -o upm clean: rm -f upm install: build sudo mv upm /usr/local/bin/ test: go test ./... deps: go mod tidy