add makefile

This commit is contained in:
talksik
2025-10-27 15:38:30 -07:00
parent 3046436185
commit b5a55fe9d8
+15
View File
@@ -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