mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-07-24 07:29:27 +00:00
17 lines
380 B
Makefile
17 lines
380 B
Makefile
TARGET = lib.a
|
|
|
|
LIBFILES = simple_file.o guid.o console.o execute.o configtable.o shell.o variables.o security_policy.o
|
|
|
|
EFI_INCLUDES = -I$(EFI_INCLUDE) -I$(EFI_INCLUDE)/$(ARCH) -I$(EFI_INCLUDE)/protocol -I$(TOPDIR)/../include \
|
|
-I$(TOPDIR)/CryptLib/Include/openssl/
|
|
|
|
lib.a: $(LIBFILES)
|
|
$(AR) rcs lib.a $(LIBFILES)
|
|
|
|
all: $(TARGET)
|
|
|
|
clean:
|
|
rm -f lib.a
|
|
rm -f $(LIBFILES)
|
|
|