blob: d485537e7515cf8b768206917581833088dff577 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $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>
|