5 lines
82 B
Makefile
5 lines
82 B
Makefile
|
.PHONY: build
|
||
|
build:
|
||
|
mkdir -p output
|
||
|
protoc -I. --gotemplate_out=output *.proto
|