mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 10:39:00 +00:00
658c50fc1f
Replacing it with trezor-crypto's na(t)ive RNG, which we can reseed over debuglink.
17 lines
203 B
Makefile
17 lines
203 B
Makefile
EMULATOR := 1
|
|
|
|
OBJS += setup.o
|
|
|
|
OBJS += buttons.o
|
|
OBJS += memory.o
|
|
OBJS += oled.o
|
|
OBJS += timer.o
|
|
OBJS += udp.o
|
|
|
|
OBJS += strl.o
|
|
|
|
libemulator.a: $(OBJS)
|
|
$(AR) rcs $@ $(OBJS)
|
|
|
|
include ../Makefile.include
|