5709a4b5a1
Split out asciidump, utf8dump, bindump, and hexdump into a separate file efiutil.c. Implement new efi_print_load_option for printing out the EFI_LOADER_OPTION data structure used to specify different options to the UEFI boot manager. Sponsored by: Netflix
14 lines
168 B
Makefile
14 lines
168 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= efivar
|
|
MAN= efivar.8
|
|
|
|
LIBADD= efivar
|
|
|
|
SRCS= efivar.c efiutil.c
|
|
|
|
EFIBOOT=${SRCTOP}/sys/boot/efi
|
|
CFLAGS+= -I${EFIBOOT}/include
|
|
|
|
.include <bsd.prog.mk>
|