summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2024-05-15 00:47:52 +0100
committerAiden Gall <aiden@aidengall.xyz>2024-05-15 00:48:53 +0100
commit5ebc67833086eccb3c3b1708745c927d5bcfd811 (patch)
treeec3347e5bcbccebcba8e9e121d22f1d74c82762f /Makefile
parentd28457e416f7ba7c903c4db6bff73fb87f77e3e6 (diff)
add static assertions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3039d1d..a68ae43 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ OBJ = ${CSRC:.c=.o} ${FSRC:.asm=.o}
all: providence.img
boot/boot.o: boot/bios.inc boot/page.inc boot/segdesc.inc
-kernel/main.o: kernel/util.h
+kernel/main.o: kernel/assert.h kernel/util.h
providence.img: ${OBJ}
${CC} ${LDFLAGS} $^ ${LDLIBS} -o $@