14 lines
183 B
Makefile
Raw Permalink Normal View History

2016-11-05 21:08:41 +01:00
.PHONY: build
build:
mkdir -p output
2016-11-07 08:45:02 +01:00
protoc -I. --gotemplate_out=template_dir=templates,debug=true:output *.proto
2016-11-06 15:31:50 +01:00
.PHONY: re
re: clean build
.PHONY: clean
clean:
rm -rf output