mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 12:27:43 +08:00
The crypto package moves into p2p. Nothing in it so far is ipfs specific; everything is p2p-general.
11 lines
192 B
Makefile
11 lines
192 B
Makefile
PB = $(wildcard *.proto)
|
|
GO = $(PB:.proto=.pb.go)
|
|
|
|
all: $(GO)
|
|
|
|
%.pb.go: %.proto
|
|
protoc --gogo_out=. --proto_path=../../../../../../:/usr/local/opt/protobuf/include:. $<
|
|
|
|
clean:
|
|
rm *.pb.go
|