diff options
author | Regia König | 2021-04-12 12:55:39 +0200 |
---|---|---|
committer | Regia König | 2021-04-12 12:55:39 +0200 |
commit | d24427f1f75424cac64f200682ef9090ce97544f (patch) | |
tree | e0ea32cdf94a9768fb3fb779cb0b4e7f3d75a403 /efi_memtest/Makefile | |
parent | Build BaseLib (diff) | |
download | memtest86-d24427f1f75424cac64f200682ef9090ce97544f.tar.gz memtest86-d24427f1f75424cac64f200682ef9090ce97544f.tar.xz memtest86-d24427f1f75424cac64f200682ef9090ce97544f.zip |
Remove some redundancies in Makefile
Diffstat (limited to 'efi_memtest/Makefile')
-rw-r--r-- | efi_memtest/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/efi_memtest/Makefile b/efi_memtest/Makefile index 681f252..54e8de6 100644 --- a/efi_memtest/Makefile +++ b/efi_memtest/Makefile @@ -25,15 +25,16 @@ PREPROCESSOR=-DUEFI -DUSING_LTO -Os \ OBJS=AutoGen.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 MemtestEfi.obj logger.o memory_tables.o ApplicationEntryPoint.o UefiLib2.o \ - UefiRuntimeServicesTableLib.o UefiBootServicesTableLib.o UefiDebugLibStdErr.o \ - BaseDebugPrintErrorLevelLib.o BaseMemoryLib.o BasePcdLibNull.o UefiDevicePathLib2.o \ - UefiMemoryAllocationLib.o + random.o MemtestEfi.obj logger.o memory_tables.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 + BaseMemoryLib_OBJS=CompareMemWrapper.o CopyMem.o CopyMemWrapper.o IsZeroBufferWrapper.o \ MemLibGeneric.o MemLibGuid.o ScanMem16Wrapper.o ScanMem32Wrapper.o ScanMem64Wrapper.o \ ScanMem8Wrapper.o SetMem.o SetMem16Wrapper.o SetMem32Wrapper.o SetMem64Wrapper.o \ - SetMemWrapper.o ZeroMemWrapper.o BasePrintLib.o + SetMemWrapper.o ZeroMemWrapper.o UefiDevicePathLib_OBJS=DevicePathFromText.o DevicePathToText.o DevicePathUtilities.o \ DevicePathUtilitiesDxeSmm.o DevicePathUtilitiesStandaloneMm.o UefiDevicePathLib.o \ |