These makefiles are not included by anything, so they shouldn't be named Makefile.inc. Also, having them all be named 'Makefile' makes some other consolidation work I'm doing much easier. Change-Id: I1234539ba6a0a6f47d2eb0c21de3da3607c6b8de Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/14130 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
41 lines
1.4 KiB
Makefile
41 lines
1.4 KiB
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright (C) 2016 Google Inc.
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; version 2 of the License.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
|
|
cbfs-files-$(CONFIG_COREINFO_SECONDARY_PAYLOAD) += img/coreinfo
|
|
img/coreinfo-file := payloads/coreinfo/build/coreinfo.elf
|
|
img/coreinfo-type := payload
|
|
|
|
payloads/coreinfo/build/coreinfo.elf coreinfo:
|
|
$(MAKE) -C payloads/coreinfo defaultbuild
|
|
|
|
clean-payloads:
|
|
$(MAKE) -C payloads/coreinfo clean
|
|
$(MAKE) -C payloads/libpayload clean
|
|
$(MAKE) -C payloads/external/depthcharge clean
|
|
$(MAKE) -C payloads/external/SeaBIOS clean
|
|
$(MAKE) -C payloads/external/U-Boot clean
|
|
$(MAKE) -C payloads/external/Memtest86Plus clean
|
|
|
|
|
|
distclean-payloads:
|
|
$(MAKE) -C payloads/coreinfo distclean
|
|
$(MAKE) -C payloads/libpayload distclean
|
|
$(MAKE) -C payloads/external/depthcharge distclean
|
|
$(MAKE) -C payloads/external/SeaBIOS distclean
|
|
$(MAKE) -C payloads/external/U-Boot distclean
|
|
$(MAKE) -C payloads/external/Memtest86Plus distclean
|
|
|
|
.phony: clean-payloads distclean-payloads
|