From f99e383775fa43c5c1354067962b1590ff2abdae Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 3 Feb 2024 20:39:06 +0100 Subject: NewBoot: Will work on AHCI instead, ATA is not getting any further in the future. Signed-off-by: Amlal El Mahrouss --- Private/makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Private/makefile') diff --git a/Private/makefile b/Private/makefile index f21a037e..6834c0be 100644 --- a/Private/makefile +++ b/Private/makefile @@ -8,7 +8,7 @@ LD = x86_64-w64-mingw32-ld CCFLAGS = -c -ffreestanding -fno-rtti -fno-exceptions -std=c++20 -D__HAVE_HCORE_APIS__ -D__HCORE__ -I../ -I./ -I$(HOME)/ ASM = nasm ASMFLAGS = -f win64 -LDFLAGS = -e Main -filealign:16 -shared --subsystem=10 +LDFLAGS = -e Main -filealign:16 -shared --subsystem=10 LDOBJ = Obj/*.obj # This file is the kernel, responsible of task management, memory, drivers and more. @@ -31,8 +31,9 @@ h-core-amd64: $(CC) $(CCFLAGS) Source/*.cxx HALKit/AMD64/PCI/*.cpp Source/Network/*.cpp\ Source/Storage/*.cxx HALKit/AMD64/*.cxx HALKit/AMD64/*.cpp HALKit/AMD64/*.s $(ASM) $(ASMFLAGS) HALKit/AMD64/HalInterruptRouting.asm - $(ASM) $(ASMFLAGS) HALKit/AMD64/SMPCoreManager.asm - $(ASM) $(ASMFLAGS) HALKit/AMD64/StartSequence.asm + $(ASM) $(ASMFLAGS) HALKit/AMD64/HalSMPCoreManager.asm + $(ASM) $(ASMFLAGS) HALKit/AMD64/HalStartSequence.asm + $(ASM) $(ASMFLAGS) HALKit/AMD64/HalInstallTIB.asm $(MOVEALL) OBJCOPY = x86_64-elf-objcopy -- cgit v1.2.3