7 lines
170 B
Makefile
7 lines
170 B
Makefile
PROTO_SRC=./proto
|
|
GEN_DEST=./pkg
|
|
|
|
build_proto:
|
|
@echo Compiling Protobuf files...
|
|
protoc --go_out=${GEN_DEST} --go-grpc_out=${GEN_DEST} ${PROTO_SRC}/*.proto
|
|
@echo Done!
|