blob: 2d7edb648047168c89fa1abfaed34245c96ed9a0 [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 \
33payloads/external/tint
Martin Rothe68a4382016-03-16 10:45:35 -060034
Martin Roth4351ace2016-02-16 19:40:47 -070035payloads/coreinfo/build/coreinfo.elf coreinfo:
36 $(MAKE) -C payloads/coreinfo defaultbuild
Martin Roth67975572016-03-07 16:38:52 -070037
Martin Roth3383a252016-04-23 17:12:28 -060038payloads/nvramcui/nvramcui.elf nvramcui:
Iru Cai736aa742016-04-15 15:48:14 +080039 $(MAKE) -C payloads/nvramcui
40
Martin Roth67975572016-03-07 16:38:52 -070041clean-payloads:
Martin Rothe68a4382016-03-16 10:45:35 -060042 $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) clean; )
Martin Roth67975572016-03-07 16:38:52 -070043
44distclean-payloads:
Martin Rothe68a4382016-03-16 10:45:35 -060045 $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) distclean; )
Martin Roth67975572016-03-07 16:38:52 -070046
Martin Rothae269c02016-03-16 12:42:05 -060047print-repo-info-payloads:
48 -$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) print-repo-info 2>/dev/null; )
49
Martin Roth3383a252016-04-23 17:12:28 -060050.PHONY: clean-payloads distclean-payloads print-repo-info-payloads nvramcui coreinfo