blob: b27d7fe23e23865e667f53622f00f19c2ea8fe78 [file] [log] [blame]
Martin Roth4351ace2016-02-16 19:40:47 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2016 Google Inc.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15
16cbfs-files-$(CONFIG_COREINFO_SECONDARY_PAYLOAD) += img/coreinfo
17img/coreinfo-file := payloads/coreinfo/build/coreinfo.elf
18img/coreinfo-type := payload
19
Iru Cai736aa742016-04-15 15:48:14 +080020cbfs-files-$(CONFIG_NVRAMCUI_SECONDARY_PAYLOAD) += img/nvramcui
21img/nvramcui-file := payloads/nvramcui/nvramcui.elf
22img/nvramcui-type := payload
23
Martin Rothe68a4382016-03-16 10:45:35 -060024PAYLOADS_LIST=\
25payloads/coreinfo \
Iru Cai736aa742016-04-15 15:48:14 +080026payloads/nvramcui \
Martin Rothe68a4382016-03-16 10:45:35 -060027payloads/libpayload \
28payloads/external/depthcharge \
29payloads/external/SeaBIOS \
30payloads/external/U-Boot \
Martin Roth888a98b2016-03-13 13:00:43 -060031payloads/external/Memtest86Plus \
Antonello Dettori4f7d3292016-05-27 23:44:47 +020032payloads/external/iPXE \
Martin Roth4769cc32016-06-02 16:42:29 -060033payloads/external/tint \
Nico Huber40b2ae32017-08-14 02:01:22 +020034payloads/external/tianocore \
35payloads/external/GRUB2 \
Martin Rothe68a4382016-03-16 10:45:35 -060036
Martin Roth4351ace2016-02-16 19:40:47 -070037payloads/coreinfo/build/coreinfo.elf coreinfo:
38 $(MAKE) -C payloads/coreinfo defaultbuild
Martin Roth67975572016-03-07 16:38:52 -070039
Martin Roth3383a252016-04-23 17:12:28 -060040payloads/nvramcui/nvramcui.elf nvramcui:
Iru Cai736aa742016-04-15 15:48:14 +080041 $(MAKE) -C payloads/nvramcui
42
Martin Roth67975572016-03-07 16:38:52 -070043clean-payloads:
Martin Rothe68a4382016-03-16 10:45:35 -060044 $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) clean; )
Martin Roth67975572016-03-07 16:38:52 -070045
46distclean-payloads:
Martin Rothe68a4382016-03-16 10:45:35 -060047 $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) distclean; )
Martin Roth67975572016-03-07 16:38:52 -070048
Martin Rothae269c02016-03-16 12:42:05 -060049print-repo-info-payloads:
50 -$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) print-repo-info 2>/dev/null; )
51
Martin Roth3383a252016-04-23 17:12:28 -060052.PHONY: clean-payloads distclean-payloads print-repo-info-payloads nvramcui coreinfo