This was added, but didn't see any use. For a large, complex chunk of code we should have some users of it. Remove all watch functionally from plugins, servers and packages. Fixes: #2548 Signed-off-by: Miek Gieben <miek@miek.nl>
13 lines
366 B
Makefile
13 lines
366 B
Makefile
# Generate the Go files from the dns.proto protobuf, you need the utilities
|
|
# from: https://github.com/golang/protobuf to make this work.
|
|
# The generate dns.pb.go is checked into git, so for normal builds we don't need
|
|
# to run this generation step.
|
|
|
|
all: dns.pb.go
|
|
|
|
dns.pb.go: dns.proto
|
|
protoc --go_out=plugins=grpc:. dns.proto
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm dns.pb.go
|