summaryrefslogtreecommitdiffstats
path: root/payloads/Makefile.inc
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2015-07-15 10:24:18 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-03-15 21:18:22 +0100
commit9125073d2af2e1c34977c9caeb5f9c5710d5b9c4 (patch)
treed959be4c96e4bdb1d6a8b69190f87da89f509a34 /payloads/Makefile.inc
parent730d47537e947eff439b33a6d3847abdd2a5a2ef (diff)
downloadcoreboot-9125073d2af2e1c34977c9caeb5f9c5710d5b9c4.tar.gz
coreboot-9125073d2af2e1c34977c9caeb5f9c5710d5b9c4.tar.bz2
coreboot-9125073d2af2e1c34977c9caeb5f9c5710d5b9c4.zip
payloads: Enable building depthcharge as part of the coreboot build
For CHROMEOS builds, depthcharge can be built automatically. This dependency exists because depthcharge without vboot and subsequent signing of the image doesn't work very well, and both are keyed to that flag as well. Change-Id: Id0195bd3b4e454f382782106d6512469106daac5 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/10924 Tested-by: build bot (Jenkins)
Diffstat (limited to 'payloads/Makefile.inc')
-rw-r--r--payloads/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/payloads/Makefile.inc b/payloads/Makefile.inc
index 4269715a720c..792df606f955 100644
--- a/payloads/Makefile.inc
+++ b/payloads/Makefile.inc
@@ -23,6 +23,7 @@ payloads/coreinfo/build/coreinfo.elf coreinfo:
clean-payloads:
$(MAKE) -C payloads/coreinfo clean
$(MAKE) -C payloads/libpayload clean
+ $(MAKE) -C payloads/external/depthcharge -f Makefile.inc clean
$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean
$(MAKE) -C payloads/external/U-Boot -f Makefile.inc clean
$(MAKE) -C payloads/external/Memtest86Plus -f Makefile.inc clean
@@ -31,6 +32,7 @@ clean-payloads:
distclean-payloads:
$(MAKE) -C payloads/coreinfo distclean
$(MAKE) -C payloads/libpayload distclean
+ $(MAKE) -C payloads/external/depthcharge -f Makefile.inc distclean
$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc distclean
$(MAKE) -C payloads/external/U-Boot -f Makefile.inc distclean
$(MAKE) -C payloads/external/Memtest86Plus -f Makefile.inc distclean