summaryrefslogtreecommitdiff
path: root/kc/boot/Makefile
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2022-03-15 16:29:24 +0000
committerAda Christine <adachristine18@gmail.com>2022-03-15 16:29:24 +0000
commitec4aee35de3446713c6754641cdad82adc011204 (patch)
treefb40b7b153da4bbb47ec46b40144a18fbfbcf74b /kc/boot/Makefile
parent97fcd7d1fc4574753d91e6767a8d8a7653a7f7fe (diff)
infrastructure for dynamic symbol resolution
Diffstat (limited to 'kc/boot/Makefile')
-rw-r--r--kc/boot/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/kc/boot/Makefile b/kc/boot/Makefile
index 159fec1..44ae161 100644
--- a/kc/boot/Makefile
+++ b/kc/boot/Makefile
@@ -8,7 +8,8 @@ TARGET := efi.os
.DEFAULT: $(TARGET)
CPPFLAGS += -I../../api -I ../api
-OBJS := entry_x86_64.o reloc_x86_64.o kc_main.o elf64.o memcmp.o memcpy.o \
+OBJS := entry_x86_64.o reloc_x86_64.o dynamic_x86_64.o \
+ kc_main.o elf64.o memcmp.o memcpy.o \
memmove.o memset.o loader_paging.o
DEPS := $(patsubst %.o,%.d,$(OBJS))