.PHONY: clean all

all: test_efi

clean:
	$(RM) test_efi *.o

test_efi: test_efi.o test_efi_var.o contrib_efivar.o \
		test_efi_systab.o test_efi_mem.o
	$(CC) -o $@ $^
