diff options
author | Regia König | 2021-06-21 15:53:46 +0200 |
---|---|---|
committer | Regia König | 2021-06-21 15:53:46 +0200 |
commit | 6586ea6370f3d702c565154ab731713929fd4a8d (patch) | |
tree | 1977662050cb0a1723460caebf533d3e545c0d06 /efi_memtest | |
parent | Add gitignore file (diff) | |
download | memtest86-6586ea6370f3d702c565154ab731713929fd4a8d.tar.gz memtest86-6586ea6370f3d702c565154ab731713929fd4a8d.tar.xz memtest86-6586ea6370f3d702c565154ab731713929fd4a8d.zip |
Reorder object creation
Diffstat (limited to 'efi_memtest')
-rw-r--r-- | efi_memtest/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/efi_memtest/Makefile b/efi_memtest/Makefile index 5a3a9ed..7cefc0c 100644 --- a/efi_memtest/Makefile +++ b/efi_memtest/Makefile @@ -35,9 +35,10 @@ M=$(M64) PREPROCESSOR=-DUEFI -DUSING_LTO -Os \ -D DISABLE_NEW_DEPRECATED_INTERFACES "-DEFIAPI=__attribute__((ms_abi))" -OBJS=Efi_Defs.obj main.o display.o test.o smp.o config.o screen_buffer.o lib.o init.o controller.o \ - pci.o spd.o dmi.o reloc.o patn.o error.o vmem.o cpuid.o memsize.o \ - random.o logger.o memory_tables.o BaseLib.o BaseMemoryLib.o BasePrintLib.o \ +OBJS=Efi_Defs.obj config.o controller.o cpuid.o display.o dmi.o error.o init.o \ + lib.o logger.o main.o memory_tables.o memsize.o patn.o pci.o reloc.o \ + screen_buffer.o random.o smp.o spd.o test.o vmem.o \ + BaseLib.o BaseMemoryLib.o BasePrintLib.o \ UefiDebugLibStdErr.o UefiDevicePathLib2.o UefiLib2.o ApplicationEntryPoint.o \ BaseDebugPrintErrorLevelLib.o UefiMemoryAllocationLib.o BasePcdLibNull.o \ UefiRuntimeServicesTableLib.o UefiBootServicesTableLib.o MemtestEfi.obj |