continue working on implementing lib9660 into the kernel

This commit is contained in:
2025-08-16 19:41:48 +03:00
parent 287ac77422
commit ce6e9642ee
10 changed files with 151 additions and 53 deletions
+6 -3
View File
@@ -4,7 +4,7 @@ OBJS = bin/boot.o bin/kernel.o bin/idt.o bin/isr.o bin/screen.o \
bin/keyboard.o bin/paging.o bin/page_alloc.o bin/page_tables.o \
bin/fat.o bin/task.o bin/switch.o bin/sys_exit.o bin/gdt.o bin/isr-asm.o \
bin/kheap.o bin/liballoc.o bin/exec_from_file.o bin/syscalls.o bin/atapi.o \
bin/lib9660.o
bin/lib9660.o bin/vfs.o
# Define the compiler and assembler
#CC = i686-elf-gcc -D__is_katauos
@@ -118,7 +118,7 @@ bin/page_alloc.o: src/mm/page_alloc.c
bin/page_tables.o: src/mm/page_tables.c
$(CC) $(CFLAGS) -c $< -o $@
bin/fat.o: src/drivers/fat.c
bin/fat.o: src/fs/fat.c
$(CC) $(CFLAGS) -c $< -o $@
bin/switch.o: src/tasking/switch.asm
@@ -151,7 +151,10 @@ bin/syscalls.o: src/tasking/syscalls.c
bin/atapi.o: src/drivers/atapi.c
$(CC) $(CFLAGS) -c $< -o $@
bin/lib9660.o: src/drivers/lib9660.c
bin/lib9660.o: src/fs/lib9660.c
$(CC) $(CFLAGS) -c $< -o $@
bin/vfs.o: src/fs/vfs.c
$(CC) $(CFLAGS) -c $< -o $@
clean: