mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 00:22:48 +00:00
15 lines
297 B
Makefile
15 lines
297 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}
|
||
|
|
||
|
PROG=efibootmgr
|
||
|
MAN= efibootmgr.8
|
||
|
SRCS= efichar.c efiutil.c efibootmgr.c
|
||
|
|
||
|
LIBADD= efivar geom
|
||
|
|
||
|
.include <bsd.prog.mk>
|