summaryrefslogtreecommitdiff
path: root/kjarna_runtime/Makefile
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2024-02-24 00:59:40 +0000
committerAda Christine <adachristine18@gmail.com>2024-02-24 00:59:40 +0000
commita61b9d1c9ee85ec08ff3b8a61e80dc33e71f3472 (patch)
treeed3c6ecaa88d82f422cc73fea30183b9575d7ba3 /kjarna_runtime/Makefile
parentcadd8266b02035065559ddd27aa0b37051bf16e9 (diff)
cleanup
Diffstat (limited to 'kjarna_runtime/Makefile')
-rw-r--r--kjarna_runtime/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/kjarna_runtime/Makefile b/kjarna_runtime/Makefile
index be3cd90..caffc79 100644
--- a/kjarna_runtime/Makefile
+++ b/kjarna_runtime/Makefile
@@ -9,14 +9,14 @@ VPATH := ../lib
TARGET := kjarna.os
.DEFAULT: $(TARGET)
-CPPFLAGS += -I../api -I.
+CPPFLAGS += -I../api/posix -I../api/libc -I../api -I.
CFLAGS += -fPIC -fvisibility=hidden -mgeneral-regs-only
LDSCRIPT := kc.ld
CRT_OBJS := start_x86_64.o dynamic_x86_64.o elf64.o
-LIB_OBJS := memcmp.o memcpy.o memmove.o memset.o string.o
+LIB_OBJS := kjarna.o memcmp.o memcpy.o memmove.o memset.o string.o
APP_OBJS := main.o
OBJS := $(CRT_OBJS) $(LIB_OBJS) $(APP_OBJS)