Generating c++ code, starting a Makefile
This commit is contained in:
9
protobuf/Makefile
Normal file
9
protobuf/Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
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)
|
Reference in New Issue
Block a user