mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-18 20:38:10 +00:00
d1a48f32ce
* Use the new protobuf messages that send accounts as strings (fixes #367) * `stellar_signingAbort()` now takes an error message * Operations now check if a transaction is being signed (fixes #368) * Operations now return false on error or if the user cancels * Stellar `fsm_*` methods now check operation result and return early if the operation fails This PR also re-enables the stellar code in the firmware.
19 lines
465 B
Makefile
19 lines
465 B
Makefile
all: messages.pb.c types.pb.c messages_map.h
|
|
|
|
PYTHON ?= python
|
|
|
|
%.pb.c: %.pb %.options
|
|
$(PYTHON) ../../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
|
|
$(PYTHON) $< | grep -v -e MessageType_Lisk > $@
|
|
|
|
clean:
|
|
rm -f *.pb *.o *.d *.pb.c *.pb.h *_pb2.py messages_map.h
|