mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
b20336e82d
This reverts the following range of commits: 68168393b9ea61328f4bb43bc3059ab32c4be2e9..ab76828e16b552c82f468e5d89f1af0645258995 Revert "update usb descriptors" This reverts commitab76828e16
. Revert "trezorhal: reply with winusb guid just for the main interface (0)" This reverts commit6acfc5d1b3
. Revert "winusb: fix WINUSB_EXTRA_STRING" This reverts commit966d8cb4ce
. Revert "winusb: cleanup DeviceInterfaceGUIDs usage" This reverts commit56c5a46095
. Revert "make winusb_string_descriptor const" This reverts commit132cc4b474
. Revert "webusb: remove unused constants" This reverts commit38b4d507bc
. Revert "bootloader: remove debug" This reverts commit56d3cbe2e9
. Revert "Bootloader - Switch from HID to WebUSB" This reverts commita22abfe90b
. Revert "Switch from HID to WebUSB" This reverts commitcb067bd14c
. Revert "Add WinUSB, WebUSB, USB2.1 to build" This reverts commit05e218bcb8
. Revert "Add WebUSB descriptors" This reverts commita062127cef
. Revert "Add WinUSB (WebUSB preparation)" This reverts commite6981e85cd
.
34 lines
429 B
Makefile
34 lines
429 B
Makefile
ifneq ($(EMULATOR),1)
|
|
OBJS += startup.o
|
|
endif
|
|
|
|
OBJS += buttons.o
|
|
OBJS += layout.o
|
|
OBJS += oled.o
|
|
OBJS += rng.o
|
|
OBJS += serialno.o
|
|
|
|
ifneq ($(EMULATOR),1)
|
|
OBJS += setup.o
|
|
endif
|
|
|
|
OBJS += util.o
|
|
OBJS += memory.o
|
|
|
|
ifneq ($(EMULATOR),1)
|
|
OBJS += timer.o
|
|
endif
|
|
|
|
OBJS += gen/bitmaps.o
|
|
OBJS += gen/fonts.o
|
|
|
|
libtrezor.a: $(OBJS)
|
|
$(AR) rcs libtrezor.a $(OBJS)
|
|
|
|
include Makefile.include
|
|
|
|
.PHONY: vendor
|
|
|
|
vendor:
|
|
git submodule update --init
|