12 lines
151 B
Makefile
Raw Normal View History

2016-12-12 19:23:47 +01:00
.PHONY: build
build:
go build -o protoc-gen-gotemplate .
.PHONY: install
install:
go install .
.PHONY: test
test: build
cd examples/dummy && make