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

14 lines
183 B
Makefile
Raw Normal View History

2016-11-05 23:08:41 +03:00
.PHONY: build
build:
mkdir -p output
2016-11-07 10:45:02 +03:00
protoc -I. --gotemplate_out=template_dir=templates,debug=true:output *.proto
2016-11-06 17:31:50 +03:00
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output