github.com/cosmos/cosmos-proto@v1.0.0-beta.3/Makefile (about) 1 DIRECTORIES_TO_BUILD := "./testpb ./internal/testprotos/test3" 2 3 pulsar: 4 docker build -t dev:proto-build -f Dockerfile . 5 docker run -v "$(CURDIR):/genproto" -w /genproto dev:proto-build ./scripts/fastreflect.sh "$(DIRECTORIES_TO_BUILD)" 6 7 proto-gen: 8 (cd proto; buf generate) 9 mv proto/cosmos_proto/cosmos.pb.go . 10 11 .PHONY: proto_gen pulsar