From 96ff1a24a7474b91c44a3dcd6f3abf3ec0542191 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Tue, 13 Feb 2024 01:04:02 +0000 Subject: reorganize a bit --- kjarna/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'kjarna/Makefile') diff --git a/kjarna/Makefile b/kjarna/Makefile index 4cf6102..b02fbe6 100644 --- a/kjarna/Makefile +++ b/kjarna/Makefile @@ -1,7 +1,7 @@ include ../defaults.mk include ../efi.mk -VPATH := ../lib +VPATH := ../lib efi/ IMAGE := kjarna.efi @@ -18,9 +18,10 @@ all: $(IMAGE) CRT_OBJS := start.o LIB_OBJS := memcmp.o memset.o memcpy.o memmove.o string.o elf64.o -APP_OBJS := file.o memory.o protocol.o runtime.o +EFI_OBJS := file.o memory.o protocol.o runtime.o +APP_OBJS := main.o -OBJS := $(CRT_OBJS) $(LIB_OBJS) $(APP_OBJS) +OBJS := $(CRT_OBJS) $(LIB_OBJS) $(EFI_OBJS) $(APP_OBJS) DEPS := $(OBJS:.o=.d) $(IMAGE): $(OBJS) -- cgit v1.3.1-1-g115d