mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-02-25 08:40:12 +08:00
* bring back plaintext 2.0.0 with new constructor * fix deprecation comment * rm unused context argument * only check remote id validity if we actually have keys * bring back msgio & simultaneous read/write
12 lines
196 B
Makefile
12 lines
196 B
Makefile
PB = $(wildcard *.proto)
|
|
GO = $(PB:.proto=.pb.go)
|
|
|
|
all: $(GO)
|
|
|
|
%.pb.go: %.proto
|
|
protoc --proto_path=$(GOPATH)/src:../../../crypto/pb:. --gogofaster_out=. $<
|
|
|
|
clean:
|
|
rm -f *.pb.go
|
|
rm -f *.go
|