Skip to content

Commit e20c655

Browse files
author
Rob Holland
authored
Add a Makefile to generate gRPC files (coinbase#5)
* Add a rake task to generate GRPC files. * Switch to a Makefile. Based on snippets from proto/Makefile.
1 parent cf861b5 commit e20c655

File tree

2 files changed

+47
-38
lines changed

2 files changed

+47
-38
lines changed

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
PROTO_ROOT := proto/temporal
2+
PROTO_FILES = $(shell find $(PROTO_ROOT) -name "*.proto")
3+
PROTO_DIRS = $(sort $(dir $(PROTO_FILES)))
4+
PROTO_OUT := lib/gen
5+
6+
proto:
7+
$(foreach PROTO_DIR,$(PROTO_DIRS),bundle exec grpc_tools_ruby_protoc -Iproto --ruby_out=$(PROTO_OUT) --grpc_out=$(PROTO_OUT) $(PROTO_DIR)*.proto;)
8+
9+
.PHONY: proto

0 commit comments

Comments
 (0)