summaryrefslogtreecommitdiff
path: root/kjarna_runtime/Makefile
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2024-02-24 17:23:35 +0000
committerAda Christine <adachristine18@gmail.com>2024-02-24 17:23:35 +0000
commitb9182f29708211d25a232def144d25e80f6d13cb (patch)
treedccfaf61bb5dd1c03a5ae234ee68941f961f1b9b /kjarna_runtime/Makefile
parent833a4c451e7d4bbe4330790773acac985999dcf6 (diff)
port printf
Diffstat (limited to 'kjarna_runtime/Makefile')
-rw-r--r--kjarna_runtime/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/kjarna_runtime/Makefile b/kjarna_runtime/Makefile
index 03ac8b0..d6e762d 100644
--- a/kjarna_runtime/Makefile
+++ b/kjarna_runtime/Makefile
@@ -15,9 +15,9 @@ 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 \
- stdio.o
+CRT_OBJS := start_x86_64.o dynamic_x86_64.o elf64.o kjarna.o
+LIB_OBJS := memcmp.o memcpy.o memmove.o memset.o string.o stdio.o \
+ printf.o
APP_OBJS := main.o
OBJS := $(CRT_OBJS) $(LIB_OBJS) $(APP_OBJS)