summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-02-24 14:47:25 -0600
committerDanny Holman <dholman@gymli.org>2024-02-24 14:55:51 -0600
commit891f1010bbdc1351bda8d2a6139094a14bdfd5e1 (patch)
treef8fcc9a273ca8df783aee243fcb3aa545887633c /Makefile
parent2ce0f8af51dae9e7d591ff5fd038f89d6ca9dbbe (diff)
kernel: string: add a strcpy function
Add an implmentation of strcpy. This function is used in several places in the kernel to copy strings between memory addresses. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5db0d5e..a0ce753 100644
--- a/Makefile
+++ b/Makefile
@@ -28,6 +28,7 @@ KERNEL_OBJS=$(KERNEL_ARCH_OBJS) \
kernel/init.o \
kernel/string.o \
kernel/io.o \
+ kernel/panic.o \
kernel/mem.o \
OBJS=$(ARCHDIR)/boot/crti.o \