Add a new 'helpers' example

This commit is contained in:
Manfred Touron
2017-12-19 15:55:33 +01:00
parent 9f831eb4de
commit 5da3d00df2
5 changed files with 150 additions and 0 deletions

13
examples/helpers/Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: build
build:
mkdir -p output
protoc -I. --gotemplate_out=template_dir=.,debug=true:. *.proto
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output