1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 02:19:21 +00:00
trezor-firmware/Makefile

23 lines
340 B
Makefile
Raw Normal View History

OBJS += startup.o
2014-04-29 12:26:51 +00:00
OBJS += buttons.o
OBJS += layout.o
OBJS += oled.o
OBJS += rng.o
OBJS += serialno.o
OBJS += setup.o
OBJS += util.o
OBJS += memory.o
OBJS += timer.o
2014-04-29 12:26:51 +00:00
OBJS += gen/bitmaps.o
OBJS += gen/fonts.o
libtrezor.a: $(OBJS)
2016-05-24 18:27:45 +00:00
$(AR) rcs libtrezor.a $(OBJS)
2014-04-29 12:26:51 +00:00
include Makefile.include
2016-05-11 12:38:04 +00:00
.PHONY: vendor
vendor:
git submodule update --init