From 70f8174c57e8a171daca49e5f0e214417b5addcd Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 29 Nov 2021 16:11:02 +0100 Subject: [PATCH] build(legacy): sort entries in Makefile [no changelog] --- legacy/Makefile | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/legacy/Makefile b/legacy/Makefile index 3bd547d39..70972a878 100644 --- a/legacy/Makefile +++ b/legacy/Makefile @@ -1,35 +1,26 @@ ifneq ($(EMULATOR),1) +OBJS += setup.o OBJS += startup.o +OBJS += timer.o endif OBJS += buttons.o OBJS += common.o OBJS += flash.o +OBJS += gen/bitmaps.o +OBJS += gen/fonts.o OBJS += layout.o +OBJS += memory.o OBJS += oled.o OBJS += random_delays.o OBJS += rng.o - -ifneq ($(EMULATOR),1) -OBJS += setup.o -endif - -OBJS += util.o -OBJS += memory.o OBJS += supervise.o - -ifneq ($(EMULATOR),1) -OBJS += timer.o -endif - -OBJS += usb_standard.o OBJS += usb21_standard.o +OBJS += usb_standard.o +OBJS += util.o OBJS += webusb.o OBJS += winusb.o -OBJS += gen/bitmaps.o -OBJS += gen/fonts.o - libtrezor.a: $(OBJS) include Makefile.include