1SHELL := /bin/bash
2
3.PHONY: proto
4proto:
5	protoc --proto_path=$(GOPATH)/src --proto_path api --go_out=plugins=grpc:api api/api.proto
6	protoc --proto_path=$(GOPATH)/src --proto_path api --go_out=plugins=grpc:api/emptypackage api/emptypackage.proto
7