trezor-mcu/emulator/Makefile

18 lines
216 B
Makefile
Raw Normal View History

EMULATOR := 1
2017-12-13 10:38:51 -08:00
OBJS += setup.o
OBJS += buttons.o
OBJS += flash.o
OBJS += oled.o
OBJS += rng.o
OBJS += timer.o
OBJS += udp.o
OBJS += strl.o
libemulator.a: $(OBJS)
$(AR) rcs $@ $(OBJS)
include ../Makefile.include