mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-28 13:57:52 +08:00
12 lines
213 B
Makefile
12 lines
213 B
Makefile
|
|
all: node.pb.go data.pb.go
|
|
|
|
node.pb.go: node.proto
|
|
protoc --gogo_out=. --proto_path=../../../../:/usr/local/opt/protobuf/include:. $<
|
|
|
|
data.pb.go: data.proto
|
|
protoc --go_out=. data.proto
|
|
|
|
clean:
|
|
rm node.pb.go
|