freebsd-dev/stand/Makefile
Warner Losh 9e74797f30 Move EFI up to common makefile. There's no need for all these .if's
based on architecture.

Sponsored by: Netflix
2018-02-27 17:35:29 +00:00

30 lines
445 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
SUBDIR+= libsa
.if ${MK_FORTH} != "no"
# Build the add-in FORTH interpreter.
SUBDIR+= ficl
SUBDIR+= forth
.endif
.if ${MK_LOADER_LUA} != "no"
SUBDIR+= liblua
SUBDIR+= lua
.endif
SUBDIR+= defaults
SUBDIR+= man
.include <bsd.arch.inc.mk>
.if ${MK_EFI} != "no" && ${MK_LOADER_EFI} != "no"
SUBDIR+= efi
.endif
.if exists(${.CURDIR}/${MACHINE}/.)
SUBDIR+= ${MACHINE}
.endif
.include <bsd.subdir.mk>