protoc-gen-go-micro/examples/js-grpc/Makefile
2016-12-16 16:08:37 +01:00

14 lines
192 B
Makefile

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