protoc-gen-go-micro/examples/dummy/Makefile
2016-11-07 08:45:02 +01:00

14 lines
183 B
Makefile

.PHONY: build
build:
mkdir -p output
protoc -I. --gotemplate_out=template_dir=templates,debug=true:output *.proto
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output