protoc-gen-go-micro/examples/time/Makefile
2017-06-08 16:40:52 +02:00

14 lines
189 B
Makefile

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