summaryrefslogtreecommitdiffhomepage
path: root/Private/makefile
diff options
context:
space:
mode:
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