Makefile 190 Bytes
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1
2
3
4
5
6
PB = $(wildcard *.proto)
GO = $(PB:.proto=.pb.go)

all: $(GO)

%.pb.go: %.proto
7
		protoc --go_out=. --proto_path=../../../../../../:/usr/local/opt/protobuf/include:. $<
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
8
9
10

clean:
		rm *.pb.go