From 748c6376d914cebbaecf2c1c6009082ce708d7fa Mon Sep 17 00:00:00 2001 From: bzt Date: Fri, 10 Dec 2021 07:50:54 +0100 Subject: [PATCH] Add extra objects to linker --- uefi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi/Makefile b/uefi/Makefile index 3deacc4..d915fc0 100644 --- a/uefi/Makefile +++ b/uefi/Makefile @@ -85,7 +85,7 @@ ifneq ($(USE_GCC),) @rm $(TARGET).so endif -$(TARGET).so: $(OBJS) +$(TARGET).so: $(OBJS) $(EXTRA) $(LD) $(LDFLAGS) $^ $(LIBS) @rm *.lib 2>/dev/null || true