Makefile 177 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
PB = $(wildcard *.proto)
GO = $(PB:.proto=.pb.go)

all: $(GO)

%.pb.go: %.proto
		protoc --proto_path=$(GOPATH)/src:. --gogofaster_out=. $<

clean:
		rm -f *.pb.go
		rm -f *.go