Change-Id: Ib95cb55add23fa172f187cbcb475958767f8a923 Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/82905 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
24 lines
423 B
Makefile
24 lines
423 B
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
unexport KCONFIG_AUTOHEADER
|
|
unexport KCONFIG_AUTOCONFIG
|
|
unexport KCONFIG_DEPENDENCIES
|
|
unexport KCONFIG_SPLITCONFIG
|
|
unexport KCONFIG_TRISTATE
|
|
unexport KCONFIG_NEGATIVES
|
|
unexport $(COREBOOT_EXPORTS)
|
|
|
|
build: leanefi
|
|
$(MAKE) -C leanefi
|
|
|
|
leanefi:
|
|
git clone "https://review.coreboot.org/leanefi"
|
|
|
|
distclean:
|
|
rm -rf leanefi
|
|
|
|
clean:
|
|
rm -rf leanefi/build
|
|
|
|
.PHONY: build clean distclean
|