backends/protobuf/protobuf.cc depends on the source and header files
generated by protoc, but this dependency wasn't explicitly declared. Add
a rule to the Makefile to fix intermittent build failures when the
protobuf header/source file isn't built before protobuf.cc.
backends/protobuf/yosys.pb.cc backends/protobuf/yosys.pb.h: misc/yosys.proto
$(Q) cd misc && protoc --cpp_out "../backends/protobuf" yosys.proto
+backends/protobuf/protobuf.cc: backends/protobuf/yosys.pb.h
+
OBJS += backends/protobuf/protobuf.o backends/protobuf/yosys.pb.o
endif