8 lines
84 B
Makefile
8 lines
84 B
Makefile
.PHONEY: proto test
|
|
|
|
proto:
|
|
protoc --gogo_out=. *.proto
|
|
|
|
test: proto
|
|
go install .
|