mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 07:07:24 +00:00
7 lines
147 B
Makefile
7 lines
147 B
Makefile
|
pbgos := $(patsubst %.proto,%.pb.go,$(wildcard *.proto))
|
||
|
|
||
|
all: $(pbgos)
|
||
|
|
||
|
%.pb.go: %.proto
|
||
|
protoc --gogofast_out=. --proto_path=$(GOPATH)/src:. $<
|