protoc-gen-go-micro/Makefile

24 lines
435 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/flow && make
2017-03-16 17:41:09 +03:00
cd examples/concat && make
cd examples/flow && make
cd examples/go-kit && 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