mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
ifneq ($(V),1)
|
|
Q := @
|
|
endif
|
|
|
|
SKIPPED_MESSAGES := Binance Cardano DebugMonero Eos Monero Ontology Ripple SdProtect Tezos WebAuthn \
|
|
DebugLinkRecordScreen DebugLinkReseedRandom DebugLinkShowText DebugLinkEraseSdCard DebugLinkWatchLayout \
|
|
GetOwnershipProof OwnershipProof GetOwnershipId OwnershipId AuthorizeCoinJoin DoPreauthorized \
|
|
CancelAuthorization DebugLinkLayout \
|
|
TxAckInput TxAckOutput TxAckPrev \
|
|
EthereumSignTypedData EthereumTypedDataStructRequest EthereumTypedDataStructAck \
|
|
EthereumTypedDataValueRequest EthereumTypedDataValueAck
|
|
|
|
ifeq ($(BITCOIN_ONLY), 1)
|
|
SKIPPED_MESSAGES += Ethereum NEM Stellar
|
|
endif
|
|
|
|
PROTO_NAMES = messages messages-bitcoin messages-common messages-crypto messages-debug \
|
|
messages-ethereum 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
|
|
|
|
# produces also all of $(PROTO_HEADERS)
|
|
messages.pb.h: $(PROTO_COMPILED) $(PROTO_OPTIONS)
|
|
@printf " NANOPB $@\n"
|
|
$(Q)nanopb_generator $(PROTO_COMPILED) \
|
|
-L '#include "%s"' \
|
|
-T -D . \
|
|
-s "mangle_names:M_FLATTEN"
|
|
@grep " CALLBACK, " $@ && echo "CALLBACK field found" && rm $@ && exit 1 || :
|
|
|
|
%.pb: %.proto
|
|
@printf " PROTOC $@\n"
|
|
$(Q)protoc -I/usr/include -I. $< -o $@
|
|
|
|
%_pb2.py: %.proto
|
|
@printf " PROTOC $@\n"
|
|
$(Q)protoc -I/usr/include -I. $< --python_out=.
|
|
|
|
messages_map.h messages_map_limits.h: messages_map.py messages_pb2.py
|
|
$(Q)$(PYTHON) $< ${SKIPPED_MESSAGES}
|
|
|
|
clean:
|
|
rm -f *.pb *.o *.d *.pb.c *.pb.h *_pb2.py messages_map.h messages_map_limits.h
|