box-o-sand/protobuf/Makefile
2012-05-07 22:07:19 -04:00

10 lines
204 B
Makefile

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)