diff options
author | Regia König | 2021-08-05 14:44:19 +0200 |
---|---|---|
committer | Regia König | 2021-08-05 14:44:19 +0200 |
commit | 6e2f863e7c76d68c32e1d9f0c442375952cdb00f (patch) | |
tree | 2366df5124a6e60714ea40de203e11fd33640ffe /efi_memtest/Makefile | |
parent | Activate Coretemp (diff) | |
download | memtest86-6e2f863e7c76d68c32e1d9f0c442375952cdb00f.tar.gz memtest86-6e2f863e7c76d68c32e1d9f0c442375952cdb00f.tar.xz memtest86-6e2f863e7c76d68c32e1d9f0c442375952cdb00f.zip |
Eliminate 'OUTPUT' directory
Diffstat (limited to 'efi_memtest/Makefile')
-rw-r--r-- | efi_memtest/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/efi_memtest/Makefile b/efi_memtest/Makefile index 7cefc0c..422080c 100644 --- a/efi_memtest/Makefile +++ b/efi_memtest/Makefile @@ -62,7 +62,7 @@ BaseLib_OBJS=ARShiftU64.o BitField.o CheckSum.o CpuDeadLoop.o Cpu.o DivU64x64Rem -LIBRARIES=OUTPUT/MemtestEfi.lib +LIBRARIES=MemtestEfi.lib all: clean MemtestEfi.efi move run @@ -87,12 +87,12 @@ $(MAIN_FILE).dll: $(MAIN_FILE).lib strip -R .strtab MemtestEfi.dll $(MAIN_FILE).lib: $(OBJS) - gcc-ar crv OUTPUT/$(MAIN_FILE).lib $^ + gcc-ar crv $(MAIN_FILE).lib $^ #rm $^ $(MAIN_FILE).obj: $(MAIN_FILE).c $(CC) $(CFLAGS) $(PREPROCESSOR) $(M) -o $(MAIN_FILE).obj \ - -MMD -MF OUTPUT/$(MAIN_FILE).obj.deps \ + -MMD -MF $(MAIN_FILE).obj.deps \ -c \ -include memtest86+/efi/Include/Efi_Defs.h \ -DSTRING_ARRAY_NAME=${MAIN_FILE}Strings \ @@ -180,7 +180,6 @@ BaseLib.o: $(BaseLib_OBJS) -I"memtest86+/efi/Include" clean: - rm -f OUTPUT/* rm -f memtest86+/*.o rm -f *.o rm -f MemtestEfi.obj |