protoc-gen-go-micro/examples/dummy/Makefile
2016-11-06 22:35:41 +01:00

14 lines
149 B
Makefile

.PHONY: build
build:
mkdir -p output
protoc -I. --gotemplate_out=output *.proto
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output