diff options
| author | Ada Christine <adachristine18@gmail.com> | 2026-05-24 11:09:31 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2026-05-24 11:09:31 +0000 |
| commit | d07bd08dd0446e8c41eccaccbb07e9112200e8ee (patch) | |
| tree | 742a3f9d9d84c8ee55858b2ebc7e0e0f8c714c7c /kc/core/Makefile | |
| parent | 9aaf21bf10d00ec12b24499817e3e91dca08c461 (diff) | |
rename and move, function renames in stdio
Diffstat (limited to 'kc/core/Makefile')
| -rw-r--r-- | kc/core/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kc/core/Makefile b/kc/core/Makefile index 56ddf55..9791762 100644 --- a/kc/core/Makefile +++ b/kc/core/Makefile @@ -1,12 +1,12 @@ include ../../defaults.mk include ../defaults.mk -VPATH := ../../lib ../ cpu/ memory/ +VPATH := ../../lib ../../lib/libc ../ cpu/ memory/ TARGET := kernel.os .DEFAULT: $(TARGET) -CPPFLAGS += -I../../api -I../api -I../../lib -I. +CPPFLAGS += -I../../api -I../api -I../../lib/api -I. CFLAGS += -mcmodel=small -Wno-unused-const-variable -Wno-unused-function -fvisibility=hidden -g AOBJS := entry_x86_64.o reloc_x86_64.o dynamic_x86_64.o @@ -14,7 +14,7 @@ COBJS := mmu.o cpu_thread.o irq.o exceptions.o cpu.o msr.o mmu.o port.o arch_thr POBJS := pic8259.o pic8259_isr.o pit8253.o i8042.o GOBJS := serial.o kc_main.o memory.o vm_tree.o panic.o task.o \ kcc_memory.o page_early.o page_stack.o video.o -LOBJS := kprintf.o memset.o memcpy.o memmove.o memcmp.o kstdio.o string.o +LOBJS := printf.o memset.o memcpy.o memmove.o memcmp.o stdio.o string.o OBJS := $(AOBJS) $(COBJS) $(POBJS) $(GOBJS) $(LOBJS) DEPS := $(patsubst %.o,%.d,$(OBJS)) |
