mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 05:52:20 +08:00

we shouldn't use internal packages. License: MIT Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
9 lines
193 B
Makefile
9 lines
193 B
Makefile
# 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
|