blob: e68c2e76629cec6653c774c21c5cd7e1365dc1a1 [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 \
32payloads/external/iPXE
Martin Rothe68a4382016-03-16 10:45:35 -060033
Martin Roth4351ace2016-02-16 19:40:47 -070034payloads/coreinfo/build/coreinfo.elf coreinfo:
35 $(MAKE) -C payloads/coreinfo defaultbuild
Martin Roth67975572016-03-07 16:38:52 -070036
Martin Roth3383a252016-04-23 17:12:28 -060037payloads/nvramcui/nvramcui.elf nvramcui:
Iru Cai736aa742016-04-15 15:48:14 +080038 $(MAKE) -C payloads/nvramcui
39
Martin Roth67975572016-03-07 16:38:52 -070040clean-payloads:
Martin Rothe68a4382016-03-16 10:45:35 -060041 $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) clean; )
Martin Roth67975572016-03-07 16:38:52 -070042
43distclean-payloads:
Martin Rothe68a4382016-03-16 10:45:35 -060044 $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) distclean; )
Martin Roth67975572016-03-07 16:38:52 -070045
Martin Rothae269c02016-03-16 12:42:05 -060046print-repo-info-payloads:
47 -$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) print-repo-info 2>/dev/null; )
48
Martin Roth3383a252016-04-23 17:12:28 -060049.PHONY: clean-payloads distclean-payloads print-repo-info-payloads nvramcui coreinfo