Skip to content

Commit 7bb77af

Browse files
committed
Compile protobuf definitions for golang
1 parent e08cff2 commit 7bb77af

File tree

4 files changed

+1873
-5
lines changed

4 files changed

+1873
-5
lines changed

go/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

go/Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: protoc test
2+
3+
# PROTOC_FLAGS := -I=.. -I=./vendor -I=$(GOPATH)/src
4+
PROTOC_FLAGS := -I=.. -I=$(GOPATH)/src
5+
6+
test:
7+
go test .
8+
9+
protoc:
10+
protoc --gogofaster_out=. $(PROTOC_FLAGS) ../proofs.proto
11+

0 commit comments

Comments
 (0)