New feature:
- Basic C compiler
This commit is contained in:
Chris
2026-02-06 01:42:27 +01:00
parent 3ba7d2da48
commit afc85e8964
20 changed files with 1519 additions and 12 deletions

View File

@@ -91,6 +91,9 @@ $(ISO_IMAGE): $(KERNEL_ELF) limine.cfg limine-setup
# Copy README
cp README.md $(ISO_DIR)/
# Copy user file.c if it exists
@if [ -f file.c ]; then cp file.c $(ISO_DIR)/; fi
# Copy Wallpaper (if it exists)
@if [ -f src/kernel/wallpaper.ppm ]; then cp src/kernel/wallpaper.ppm $(ISO_DIR)/; fi