From b5a55fe9d8c66bdb4d91f3b7f53d66f4435accce Mon Sep 17 00:00:00 2001 From: talksik Date: Mon, 27 Oct 2025 15:38:30 -0700 Subject: [PATCH] add makefile --- go-cli/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 go-cli/Makefile diff --git a/go-cli/Makefile b/go-cli/Makefile new file mode 100644 index 0000000..b64b37c --- /dev/null +++ b/go-cli/Makefile @@ -0,0 +1,15 @@ + +.PHONY: all +all: test + go run cmd/main.go + +.PHONY: generate +generate: + ./genproto.sh + +test: + go test ./... -v + +.PHONY: build +build: test + CGO_ENABLED=0 go build cmd/main.go