protoc-gen-go-micro/Makefile

21 lines
356 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
cd examples/js-grpc && make
2016-12-20 15:36:25 +03:00
.PHONY: docker.build
docker.build:
docker build --pull -t moul/protoc-gen-gotemplate .
.PHONY: docker.push
docker.push: docker.build
docker push moul/protoc-gen-gotemplate