mirror of
https://github.com/slackhq/nebula.git
synced 2024-11-14 11:57:23 +08:00
9 lines
189 B
Makefile
9 lines
189 B
Makefile
GO111MODULE = on
|
|
export GO111MODULE
|
|
|
|
cert.pb.go: cert.proto .FORCE
|
|
go build github.com/golang/protobuf/protoc-gen-go
|
|
PATH="$(PWD):$(PATH)" protoc --go_out=. $<
|
|
rm protoc-gen-go
|
|
|
|
.FORCE:
|