diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 18:00:04 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 18:00:04 -0400 |
commit | 56d5c946c208e2b8f66608d0212714e70c9f480c (patch) | |
tree | d2d4a7986439cb853a1bce61354cfc4b572a82da /src/sys/arch/i386/Makefile | |
parent | b4dd90f9e51a0d15b7300e6338873eee8f12968d (diff) |
kernel: Add kern_init.c
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/i386/Makefile')
-rw-r--r-- | src/sys/arch/i386/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/arch/i386/Makefile b/src/sys/arch/i386/Makefile index 2db5f9a..78e6e4c 100644 --- a/src/sys/arch/i386/Makefile +++ b/src/sys/arch/i386/Makefile @@ -14,7 +14,7 @@ ASMOBJECTS = $(ASMFILES:.S=.S.o) DEPS = $(CFILES:.c=.d) ASMDEPS = $(ASMFILES:.S=.S.d) OBJECTS = $(CFILES:%.c=%.o) -LD_FLAGS = -Tconf/sys.ld +LD_FLAGS = -Tconf/sys.ld -L../../target -lkern .PHONY: all all: $(OBJECTS) $(ASMOBJECTS) |