# You must use the current protoc-gen-go # # go-clone --go-src google.golang.org/protobuf # cd ~/go/src/google.golang.org/protobuf/cmd/protoc-gen-go # go install all: forgeConfig.pb.go patchset.pb.go goimports vet generate: clean autogenpb --proto patchset.proto autogenpb --proto forgeConfig.proto vet: @GO111MODULE=off go vet @echo this go library package builds okay # autofixes your import headers in your golang files goimports: goimports -w *.go clean: rm -f *.pb.go -rm -f go.* go-mod-clean --purge forgeConfig.pb.go: forgeConfig.proto autogenpb --proto forgeConfig.proto patchset.pb.go: patchset.proto autogenpb --proto patchset.proto