blob: 4269715a720c3f0cb69918743f67fc307703c8c8 [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
20payloads/coreinfo/build/coreinfo.elf coreinfo:
21 $(MAKE) -C payloads/coreinfo defaultbuild
Martin Roth67975572016-03-07 16:38:52 -070022
23clean-payloads:
24 $(MAKE) -C payloads/coreinfo clean
25 $(MAKE) -C payloads/libpayload clean
26 $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean
27 $(MAKE) -C payloads/external/U-Boot -f Makefile.inc clean
28 $(MAKE) -C payloads/external/Memtest86Plus -f Makefile.inc clean
29
30
31distclean-payloads:
32 $(MAKE) -C payloads/coreinfo distclean
33 $(MAKE) -C payloads/libpayload distclean
34 $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc distclean
35 $(MAKE) -C payloads/external/U-Boot -f Makefile.inc distclean
36 $(MAKE) -C payloads/external/Memtest86Plus -f Makefile.inc distclean
37
38.phony: clean-payloads distclean-payloads