diff options
| author | Ada Christine <adachristine18@gmail.com> | 2022-03-17 14:03:12 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2022-03-17 14:03:12 +0000 |
| commit | 65a111a543f49c645ec21ef44f289c29ccb27e8d (patch) | |
| tree | bb5442a95ae6ea7632299da9c3ca74f2866b871c /kc/core/Makefile | |
| parent | 28ea7b987645e94566e9277e1c4086c58fa96225 (diff) | |
pulled out kprintf() and friends into lib/
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 dede157..4d373cd 100644 --- a/kc/core/Makefile +++ b/kc/core/Makefile @@ -6,15 +6,15 @@ VPATH := ../../lib ../ cpu/ memory/ TARGET := kernel.os .DEFAULT: $(TARGET) -CPPFLAGS += -I../../api -I../api -I. +CPPFLAGS += -I../../api -I../api -I../../lib -I. CFLAGS += -Wno-unused-const-variable -Wno-unused-function -fvisibility=hidden -g SOBJS := GOBJS := entry_x86_64.o reloc_x86_64.o dynamic_x86_64.o \ - kprint.o serial.o port.o mmu.o kc_main.o memory.o memset.o memcpy.o \ + kprintf.o serial.o port.o mmu.o kc_main.o memory.o memset.o memcpy.o \ memmove.o memcmp.o cpu.o vm_tree.o exceptions.o panic.o msr.o task.o \ cpu_task.o irq.o kcc_memory.o string.o pic8259.o pic8259_isr.o \ - pit8253.o page_early.o page_stack.o strtoull.o + pit8253.o page_early.o page_stack.o strtoull.o kstdio.o IOBJS := # __attribute__((interrupt)) requires -mgeneral-regs-only |
