summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/Source/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-27 10:53:58 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-27 10:53:58 +0100
commitde4af9d8929da048ab714b75d2af23ccebe3f6cb (patch)
treefa9350dc3e0b178904cf5c41691570444d3bc5b2 /Private/NewBoot/Source/makefile
parent70e95128b11dbb535e4679cbacb1cbeaa414c822 (diff)
Bootloader: Refactor MPT, working on EFI support.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/NewBoot/Source/makefile')
-rw-r--r--Private/NewBoot/Source/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/NewBoot/Source/makefile b/Private/NewBoot/Source/makefile
index 3273b52f..911cdfef 100644
--- a/Private/NewBoot/Source/makefile
+++ b/Private/NewBoot/Source/makefile
@@ -11,8 +11,8 @@ FLAG_GNU=-I../ -I../../../efiSDK/inc -c -ffreestanding -fno-rtti -fno-exceptions
.PHONY: arch-amd64
arch-amd64:
- $(CC_GNU) $(FLAG_GNU) HEL/AMD64/BootAMD64.cxx *.cxx
- $(LD_GNU) *.o -e Main -Ttext 0x000 --oformat binary -o BootloaderStage2.bin
+ $(CC_GNU) $(FLAG_GNU) -D__DBG__ HEL/AMD64/BootAMD64.cxx *.cxx
+ $(LD_GNU) *.o -e Main --oformat binary -o BootloaderStage2.bin
.PHONY: clean
clean: