summaryrefslogtreecommitdiff
path: root/kjarna_runtime/Makefile
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2024-02-24 15:18:40 +0000
committerAda Christine <adachristine18@gmail.com>2024-02-24 15:18:40 +0000
commit0f3866a4dad84860e135855766c77e5a82737686 (patch)
tree97e7bac72928ca6affc362577214646f942ad4d7 /kjarna_runtime/Makefile
parenta61b9d1c9ee85ec08ff3b8a61e80dc33e71f3472 (diff)
bad reloc code silly me
Diffstat (limited to 'kjarna_runtime/Makefile')
-rw-r--r--kjarna_runtime/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/kjarna_runtime/Makefile b/kjarna_runtime/Makefile
index caffc79..03ac8b0 100644
--- a/kjarna_runtime/Makefile
+++ b/kjarna_runtime/Makefile
@@ -16,7 +16,8 @@ CFLAGS += -fPIC -fvisibility=hidden -mgeneral-regs-only
LDSCRIPT := kc.ld
CRT_OBJS := start_x86_64.o dynamic_x86_64.o elf64.o
-LIB_OBJS := kjarna.o memcmp.o memcpy.o memmove.o memset.o string.o
+LIB_OBJS := kjarna.o memcmp.o memcpy.o memmove.o memset.o string.o \
+ stdio.o
APP_OBJS := main.o
OBJS := $(CRT_OBJS) $(LIB_OBJS) $(APP_OBJS)