Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Commit 8485631

Browse files
committed
fix include path err
1 parent c51be89 commit 8485631

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin/
2+
.cache/
23

34
*.log
45
*.elf

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SRC_DIR = src
1414
SRC_BOOT = boot
1515
SRC_KERNEL = $(SRC_DIR)/kernel
1616
FONTS = $(SRC_KERNEL)/fonts/ter-u12b.bdf
17-
INCLUDE = $(SRC_DIR)/include
17+
INCLUDE = $(SRC_DIR)/kernel
1818
OUT_DIR = bin
1919
K_OUT_DIR = $(OUT_DIR)/kernel
2020
B_OUT_DIR = $(OUT_DIR)/boot

src/kernel/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ void kloop() {
104104
if (!activity) {
105105
cpu_halt();
106106
}
107-
}
107+
}

0 commit comments

Comments
 (0)