mirror of
https://github.com/opnsense/src.git
synced 2026-05-25 02:35:01 -04:00
Put all the efi related tools into FreeBSD-efi-tools.
Differential Revision: https://reviews.freebsd.org/D31803
(cherry picked from commit d8d41d3b84)
16 lines
317 B
Makefile
16 lines
317 B
Makefile
# $FreeBSD$
|
|
EFIBOOT=${SRCTOP}/stand/efi
|
|
EFIINCL=${SRCTOP}/stand/efi/include
|
|
EFIVAR=${SRCTOP}/usr.sbin/efivar
|
|
.PATH: ${EFIBOOT}/libefi ${EFIVAR}
|
|
CFLAGS+= -I${EFIVAR} -I${EFIINCL}
|
|
|
|
PACKAGE= efi-tools
|
|
|
|
PROG=efibootmgr
|
|
MAN= efibootmgr.8
|
|
SRCS= efichar.c efiutil.c efibootmgr.c
|
|
|
|
LIBADD= efivar geom
|
|
|
|
.include <bsd.prog.mk>
|