blob: 37f5746d5e7ba66fc5f8bf2a220546c6b8d5fe04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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../include
lib.a: $(LIBFILES)
$(AR) rcs lib.a $(LIBFILES)
all: $(TARGET)
clean:
rm -f lib.a
rm -f $(LIBFILES)
|