box-o-sand/protobuf/Makefile

10 lines
204 B
Makefile
Raw Normal View History

PROTOC := $(PWD)/bin/protoc
TARGETS := $(patsubst %.proto,%.pb.cc,$(shell find src -name '*.proto'))
%.pb.cc:%.proto
$(PROTOC) -I=$(shell dirname $^) --cpp_out=$(shell dirname $^) $^
all: $(TARGETS)