protoc-gen-go-micro/examples/concat/Makefile

14 lines
198 B
Makefile
Raw Normal View History

2017-01-17 18:07:38 +03:00
.PHONY: build
build:
mkdir -p output
protoc -I. --gotemplate_out=template_dir=templates,debug=true,all=true:output proto/*.proto
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output