mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
23 lines
525 B
Makefile
23 lines
525 B
Makefile
NAME = bootloader
|
|
|
|
MCU_DIR=$(subst /bootloader,,$(PWD))
|
|
|
|
OBJS += bootloader.o
|
|
OBJS += signatures.o
|
|
OBJS += usb.o
|
|
|
|
OBJS += $(MCU_DIR)/trezor-crypto/bignum.o
|
|
OBJS += $(MCU_DIR)/trezor-crypto/ecdsa.small.o
|
|
OBJS += $(MCU_DIR)/trezor-crypto/hmac.o
|
|
OBJS += $(MCU_DIR)/trezor-crypto/ripemd160.o
|
|
OBJS += $(MCU_DIR)/trezor-crypto/secp256k1.small.o
|
|
OBJS += $(MCU_DIR)/trezor-crypto/sha2.o
|
|
|
|
CFLAGS += -DUSE_PRECOMPUTED_IV=0
|
|
CFLAGS += -DUSE_PRECOMPUTED_CP=0
|
|
|
|
include $(MCU_DIR)/Makefile.include
|
|
|
|
align:
|
|
./firmware_align.py $(NAME).bin
|