11 lines
145 B
Makefile
11 lines
145 B
Makefile
all: test_go
|
|
|
|
test_go: test.proto
|
|
PATH="${GOPATH}/bin:${PATH}" protoc \
|
|
-I. \
|
|
-I${GOPATH}/src \
|
|
--go_out=plugins=grpc:. \
|
|
test.proto
|
|
|
|
|