freebsd-dev/usr.sbin/efibootmgr/Makefile
Emmanuel Vadot d8d41d3b84 pkgbase: Remove libefivar package and add a efi-tools one
Put all the efi related tools into FreeBSD-efi-tools.

Differential Revision:	https://reviews.freebsd.org/D31803
2021-09-07 10:24:21 +02:00

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>