protoc-gen-go-micro/test/Makefile

14 lines
149 B
Makefile
Raw Normal View History

2016-11-05 23:08:41 +03:00
.PHONY: build
build:
mkdir -p output
protoc -I. --gotemplate_out=output *.proto
2016-11-06 17:31:50 +03:00
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output