1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/firmware/protob/Makefile
Jason Zavaglia 5cc299facd Generate the protobuf files at build time (#219)
Improve the build reliability by ensuring protobuf files are
generated at build time.
2017-09-28 13:10:32 +02:00

17 lines
408 B
Makefile

all: messages.pb.c storage.pb.c types.pb.c messages_map.h
%.pb.c: %.pb %.options
../../vendor/nanopb/generator/nanopb_generator.py $< -L '#include "%s"' -T
%.pb: %.proto
protoc -I/usr/include -I. $< -o $@
%_pb2.py: %.proto
protoc -I/usr/include -I. $< --python_out=.
messages_map.h: messages_map.py messages_pb2.py types_pb2.py
./$< > $@
clean:
rm -f *.pb *.o *.pb.c *.pb.h *_pb2.py messages_map.h