mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 17:52:43 +00:00
d8d41d3b84
Put all the efi related tools into FreeBSD-efi-tools. Differential Revision: https://reviews.freebsd.org/D31803
17 lines
317 B
Makefile
17 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>
|