protoc-gen-go-micro/Makefile

13 lines
179 B
Makefile
Raw Normal View History

2016-12-12 21:23:47 +03:00
.PHONY: build
build:
go build -o protoc-gen-gotemplate .
.PHONY: install
install:
go install .
.PHONY: test
test: build
cd examples/dummy && make
2016-12-13 19:21:15 +03:00
cd examples/go-kit && make