• Juan Batiz-Benet's avatar
    net -> p2p/net · 72df463f
    Juan Batiz-Benet authored
    The net package is the next to move. It will be massaged
    a bit still to fix the Network / "NetworkBackend" conflict.
    72df463f
Makefile 191 Bytes

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