BIN:= nonsense-time SERVICE:= nonsense-time.service .PHONY: all test clean build install info all: build build: $(BIN) install: $(BIN) cp $(BIN) /usr/bin test: go test ./... clean: go mod tidy info: @echo "BIN: $(BIN)" @echo "SERVICE: $(SERVICE)" nonsense-time: nonsense-time.go go build .