github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/network/message/Makefile (about) 1 # To re-generate the the protobuf go code, install tools first: 2 # ``` 3 # cd flow-go 4 # make install-tools 5 # ``` 6 # Install protoc: 7 # https://grpc.io/docs/protoc-installation/ 8 # 9 # Then run: 10 # ``` 11 # cd network/message 12 # make generate 13 # ``` 14 15 16 .PHONY: generate 17 generate: 18 protoc --gofast_out=. *.proto 19 20 .PHONY: generate 21 clean: 22 rm -f *.pb.go