blob: ad18f391db57bfcc094e0f8de43f1d3e63d97854 (
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$(TOPDIR)/../include
lib.a: $(LIBFILES)
$(AR) rcs lib.a $(LIBFILES)
all: $(TARGET)
clean:
rm -f lib.a
rm -f $(LIBFILES)
|