Just follow the examples of other payloads and simply remove the build directory of said payload. Change-Id: Idf2a8f3b9ecbb300514d2d1deede76785fd402b7 Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/82897 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
23 lines
382 B
Makefile
23 lines
382 B
Makefile
|
|
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
|