From 0031c2fe030572c68f110d6c200adc5d5a2023d4 Mon Sep 17 00:00:00 2001 From: xamidev Date: Mon, 22 Dec 2025 11:27:39 +0100 Subject: [PATCH] Woops.. it wasnt nonsense after all --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 90b358f..dd629d7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ build: rm -f *.o - x86_64-elf-gcc -g -c -I src src/mem/utils.h src/mem/gdt.c src/io/serial.c src/io/term.c src/io/printf.c src/kmain.c -Wall -Wextra -std=gnu99 -nostdlib -ffreestanding -fno-stack-protector -fno-stack-check -fno-PIC -ffunction-sections -fdata-sections -mcmodel=kernel + x86_64-elf-gcc -g -c -I src src/mem/utils.c src/mem/gdt.c src/io/serial.c src/io/term.c src/io/printf.c src/kmain.c -Wall -Wextra -std=gnu99 -nostdlib -ffreestanding -fno-stack-protector -fno-stack-check -fno-PIC -ffunction-sections -fdata-sections -mcmodel=kernel objcopy -O elf64-x86-64 -B i386 -I binary zap-light16.psf zap-light16.o x86_64-elf-ld -o pepperk -T linker.ld *.o