summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2021-03-09 11:54:58 -0500
committerPeter Jones <pjones@redhat.com>2021-03-10 15:54:20 -0500
commit766aac4d5cfbe76026be5ce718b0883ee211f323 (patch)
tree56b15cac9a128b4285d58bc1e2a4b12cff5ed881 /Makefile
parent78809820b5a3f79a0bfbec00e630e40011acf4ec (diff)
downloadefi-boot-shim-766aac4d5cfbe76026be5ce718b0883ee211f323.tar.gz
efi-boot-shim-766aac4d5cfbe76026be5ce718b0883ee211f323.zip
Consolidate most of our standard lib functions to lib
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6a62e00a..7c0fbb11 100644
--- a/Makefile
+++ b/Makefile
@@ -116,12 +116,12 @@ LIBS = Cryptlib/libcryptlib.a \
gnu-efi/$(ARCH_GNUEFI)/gnuefi/libgnuefi.a
$(SHIMSONAME): $(OBJS) $(LIBS)
- $(LD) -o $@ $(LDFLAGS) $^ $(EFI_LIBS)
+ $(LD) -o $@ $(LDFLAGS) $^ $(EFI_LIBS) lib/lib.a
fallback.o: $(FALLBACK_SRCS)
$(FBSONAME): $(FALLBACK_OBJS) $(LIBS)
- $(LD) -o $@ $(LDFLAGS) $^ $(EFI_LIBS)
+ $(LD) -o $@ $(LDFLAGS) $^ $(EFI_LIBS) lib/lib.a
MokManager.o: $(MOK_SOURCES)