Makefile 193 Bytes
Newer Older
1 2 3 4 5 6 7 8
# TODO(brian): add proto tasks
all: message.pb.go

message.pb.go: message.proto
	protoc --gogo_out=. --proto_path=../../../../../:/usr/local/opt/protobuf/include:. $<

clean:
	rm message.pb.go