From f2a296064e6befbce4b584f24d474a8ade2c5215 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 1 Feb 2025 07:42:53 -0600 Subject: start toying with a protobuf here --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e4713b7..f85574a 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,12 @@ all: @echo "Run: make redomod # to remake the go files" @echo +redo: clean proto goimports vet + +vet: + @GO111MODULE=off go vet + @echo this go plugin package builds okay + redomod: goimports rm -f go.* GO111MODULE= go mod init @@ -10,3 +16,9 @@ redomod: goimports goimports: goimports -w *.go + +proto: + autogenpb --proto widget.proto + +clean: + rm -f go.* *.pb.go -- cgit v1.2.3