7 lines
147 B
Makefile
Raw Normal View History

2019-06-09 09:24:20 +02:00
pbgos := $(patsubst %.proto,%.pb.go,$(wildcard *.proto))
all: $(pbgos)
%.pb.go: %.proto
protoc --gogofast_out=. --proto_path=$(GOPATH)/src:. $<