# 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 reset make -C forgeConfig vet: lint GO111MODULE=off go vet lint: -buf lint repo.proto # autofixes your import headers in your golang files goimports: goimports -w *.go make -C forgeConfig goimports redomod: rm -f go.* GO111MODULE= go mod init GO111MODULE= go mod tidy go mod edit -go=1.20 clean: rm -f *.pb.go -rm -f go.* make -C forgeConfig clean install: make -C forgeConfig install forgeConfig.pb.go: forgeConfig.proto autogenpb --proto forgeConfig.proto --sort "ByPath,GoPath" --marshal ForgeConfigs