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

4
all: $(GO)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
5

6 7
%.pb.go: %.proto
		protoc --gogo_out=. --proto_path=../../../../../../:/usr/local/opt/protobuf/include:. $<
Chas Leichner's avatar
Chas Leichner committed
8 9

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