mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-05 04:10:58 +00:00
fix(legacy): fix protobuf build [no changelog]
This commit is contained in:
parent
a6485d76ee
commit
97f49cf336
@ -12,13 +12,21 @@ ifeq ($(BITCOIN_ONLY), 1)
|
|||||||
SKIPPED_MESSAGES += Ethereum Lisk NEM Stellar
|
SKIPPED_MESSAGES += Ethereum Lisk NEM Stellar
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: messages_map.h messages_map_limits.h messages-bitcoin.pb.h messages-common.pb.h messages-crypto.pb.h messages-debug.pb.h messages-ethereum.pb.h messages-management.pb.h messages-nem.pb.h messages.pb.h messages-stellar.pb.h messages-lisk.pb.h messages_nem_pb2.py
|
PROTO_NAMES = messages messages-bitcoin messages-common messages-crypto messages-debug \
|
||||||
|
messages-ethereum messages-lisk messages-management messages-nem messages-stellar
|
||||||
|
|
||||||
|
PROTO_OPTIONS = $(PROTO_NAMES:=.options)
|
||||||
|
PROTO_COMPILED = $(PROTO_NAMES:=.pb)
|
||||||
|
PROTO_HEADERS = $(PROTO_COMPILED:=.h)
|
||||||
|
|
||||||
|
all: messages_map.h messages_map_limits.h messages.pb.h
|
||||||
|
|
||||||
PYTHON ?= python
|
PYTHON ?= python
|
||||||
|
|
||||||
%.pb.h: %.pb %.options
|
# produces also all of $(PROTO_HEADERS)
|
||||||
|
messages.pb.h: $(PROTO_COMPILED) $(PROTO_OPTIONS)
|
||||||
@printf " NANOPB $@\n"
|
@printf " NANOPB $@\n"
|
||||||
$(Q)nanopb_generator $< \
|
$(Q)nanopb_generator $(PROTO_COMPILED) \
|
||||||
-L '#include "%s"' \
|
-L '#include "%s"' \
|
||||||
-T -D . \
|
-T -D . \
|
||||||
-s "mangle_names:M_FLATTEN"
|
-s "mangle_names:M_FLATTEN"
|
||||||
@ -28,10 +36,6 @@ PYTHON ?= python
|
|||||||
@printf " PROTOC $@\n"
|
@printf " PROTOC $@\n"
|
||||||
$(Q)protoc -I/usr/include -I. $< -o $@
|
$(Q)protoc -I/usr/include -I. $< -o $@
|
||||||
|
|
||||||
messages_%_pb2.py: messages-%.proto
|
|
||||||
@printf " PROTOC $@\n"
|
|
||||||
$(Q)protoc -I/usr/include -I. $< --python_out=.
|
|
||||||
|
|
||||||
%_pb2.py: %.proto
|
%_pb2.py: %.proto
|
||||||
@printf " PROTOC $@\n"
|
@printf " PROTOC $@\n"
|
||||||
$(Q)protoc -I/usr/include -I. $< --python_out=.
|
$(Q)protoc -I/usr/include -I. $< --python_out=.
|
||||||
|
@ -20,5 +20,3 @@ DebugLinkMemoryWrite.memory max_size:1024
|
|||||||
# Unused messages.
|
# Unused messages.
|
||||||
DebugLinkLayout skip_message:true
|
DebugLinkLayout skip_message:true
|
||||||
DebugLinkRecordScreen skip_message:true
|
DebugLinkRecordScreen skip_message:true
|
||||||
DebugLinkShowText skip_message:true
|
|
||||||
DebugLinkShowTextItem skip_message:true
|
|
||||||
|
Loading…
Reference in New Issue
Block a user