summaryrefslogtreecommitdiff
path: root/boot/Makefile
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2025-02-02 15:20:52 +0000
committerAda Christine <adachristine18@gmail.com>2025-02-02 15:20:52 +0000
commit9bc0738101979b626233ee226ece3cc8cae053ec (patch)
tree33f608f59a3cfc062db0363c208f3b0ea05c62e3 /boot/Makefile
parent3d806c9e2fcb6226915982b6514919a3b9dac4dc (diff)
full flow implemented
Diffstat (limited to 'boot/Makefile')
-rw-r--r--boot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/Makefile b/boot/Makefile
index 49b6639..29151cd 100644
--- a/boot/Makefile
+++ b/boot/Makefile
@@ -24,7 +24,7 @@ all: $(IMAGE)
CRT_OBJS := start.o bind.o
LIB_OBJS := memcmp.o memset.o memcpy.o memmove.o string.o elf64.o printf.o stdio.o msr.o
EFI_OBJS := file.o memory.o protocol.o image.o
-APP_OBJS := main.o fake_syscall_entry.o
+APP_OBJS := main.o fake_syscall_entry.o fake_syscall.o
OBJS := $(CRT_OBJS) $(LIB_OBJS) $(EFI_OBJS) $(APP_OBJS)
DEPS := $(OBJS:.o=.d)