protoc-gen-go-micro/examples/arithmetics/Makefile
2018-03-21 15:03:26 +01:00

14 lines
198 B
Makefile

.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