summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Garrett <mjg@redhat.com>2012-06-19 15:25:59 -0400
committerMatthew Garrett <mjg@redhat.com>2012-06-19 15:25:59 -0400
commit390191c60716b6a7c4f3e16870731dbc661079de (patch)
treece599bce64e7137fbf955c8c9e1888e1843d9aea
parent301f41f053815a7e6cc6a8c6ab4a34db2b247b0d (diff)
downloadefi-boot-shim-390191c60716b6a7c4f3e16870731dbc661079de.tar.gz
efi-boot-shim-390191c60716b6a7c4f3e16870731dbc661079de.zip
Fix build somewhat
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a371944a..59968d14 100644
--- a/Makefile
+++ b/Makefile
@@ -25,10 +25,11 @@ LDFLAGS = -nostdlib -znocombreloc -T $(EFI_LDS) -shared -Bsymbolic -L$(EFI_PATH
TARGET = shim.efi
OBJS = shim.o shim.so
+SOURCES = shim.c shim.h signature.h PeImage.h cert.h
all: Cryptlib/libcryptlib.a Cryptlib/OpenSSL/libopenssl.a $(TARGET)
-shim.efi: shim.so
+shim.o: $(SOURCES)
shim.so: $(OBJS)
$(LD) -o $@ $(LDFLAGS) $^ $(EFI_LIBS)