Makefile 175 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
Steven Allen's avatar
Steven Allen committed
7
		protoc --proto_path=$(GOPATH)/src:. --gogofast_out=. $<
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
8
9

clean:
Steven Allen's avatar
Steven Allen committed
10
11
		rm -f *.pb.go
		rm -f *.go