summaryrefslogtreecommitdiffhomepage
path: root/Private/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-27 11:58:54 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-27 11:58:54 +0100
commita33d9510bd36a9fdb98f291250a025cd4bec8bc1 (patch)
treef060a1f0624cf538c34abf700091bb7350a36af1 /Private/makefile
parent9614c53b82037f77d5b57777560f8a320cb2ac4f (diff)
Kernel: working on interrupts, almost fix them.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/makefile')
-rw-r--r--Private/makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Private/makefile b/Private/makefile
index b49663fc..34f3c16d 100644
--- a/Private/makefile
+++ b/Private/makefile
@@ -36,11 +36,14 @@ h-core-amd64:
$(ASM) $(ASMFLAGS) HALKit/AMD64/HalInstallTIB.asm
$(MOVEALL)
-OBJCOPY = x86_64-elf-objcopy
+OBJCOPY=x86_64-w64-mingw32-objcopy
+FONTFLAGS=-b binary
+KERNELFONT=./SSFN/amiga.sfn
.PHONY: link-amd64
link-amd64:
- $(LD) $(LDFLAGS) $(LDOBJ) -o $(KERNEL)
+ $(LD) $(FONTFLAGS) $(KERNELFONT) -o console_sfn.exe
+ $(LD) $(LDFLAGS) $(LDOBJ) console_sfn.exe -o $(KERNEL)
cp $(KERNEL) Root/System
.PHONY: all