mirror of
https://github.com/linka-cloud/grpc.git
synced 2024-11-22 19:06:26 +00:00
10 lines
171 B
Makefile
10 lines
171 B
Makefile
|
|
||
|
all: test_go
|
||
|
|
||
|
test_go: test.proto
|
||
|
protoc --go_out=. --go_opt=paths=source_relative \
|
||
|
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
|
||
|
test.proto
|
||
|
|
||
|
|