Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 1 | ## |
| 2 | ## This file is part of the coreboot project. |
| 3 | ## |
| 4 | ## Copyright (C) 2008 Advanced Micro Devices, Inc. |
| 5 | ## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de> |
Stefan Reinauer | 8ed1b6d | 2010-01-19 21:13:44 +0000 | [diff] [blame] | 6 | ## Copyright (C) 2009-2010 coresystems GmbH |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 7 | ## Copyright (C) 2011 secunet Security Networks AG |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 8 | ## |
Patrick Georgi | 3bda044 | 2011-06-30 15:48:57 +0200 | [diff] [blame] | 9 | ## Redistribution and use in source and binary forms, with or without |
| 10 | ## modification, are permitted provided that the following conditions |
| 11 | ## are met: |
| 12 | ## 1. Redistributions of source code must retain the above copyright |
| 13 | ## notice, this list of conditions and the following disclaimer. |
| 14 | ## 2. Redistributions in binary form must reproduce the above copyright |
| 15 | ## notice, this list of conditions and the following disclaimer in the |
| 16 | ## documentation and/or other materials provided with the distribution. |
| 17 | ## 3. The name of the author may not be used to endorse or promote products |
| 18 | ## derived from this software without specific prior written permission. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 19 | ## |
Patrick Georgi | 3bda044 | 2011-06-30 15:48:57 +0200 | [diff] [blame] | 20 | ## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 21 | ## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 22 | ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 23 | ## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 24 | ## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 25 | ## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 26 | ## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 27 | ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 28 | ## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 29 | ## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 30 | ## SUCH DAMAGE. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 31 | ## |
| 32 | |
Nico Huber | 7a1fbdb | 2017-08-23 23:48:13 +0200 | [diff] [blame] | 33 | top := $(CURDIR) |
| 34 | src := src |
| 35 | srck := $(top)/util/kconfig |
Vadim Bendebury | 5f7e4f0 | 2015-05-06 21:00:10 -0700 | [diff] [blame] | 36 | obj ?= build |
| 37 | override obj := $(subst $(top)/,,$(abspath $(obj))) |
Nico Huber | 7a1fbdb | 2017-08-23 23:48:13 +0200 | [diff] [blame] | 38 | objutil ?= $(obj)/util |
| 39 | objk := $(objutil)/kconfig |
Vadim Bendebury | 5f7e4f0 | 2015-05-06 21:00:10 -0700 | [diff] [blame] | 40 | absobj := $(abspath $(obj)) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 41 | |
Nico Huber | 7a1fbdb | 2017-08-23 23:48:13 +0200 | [diff] [blame] | 42 | COREBOOT_EXPORTS := COREBOOT_EXPORTS |
| 43 | COREBOOT_EXPORTS += top src srck obj objutil objk |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 44 | |
Nico Huber | 7a1fbdb | 2017-08-23 23:48:13 +0200 | [diff] [blame] | 45 | DOTCONFIG ?= $(top)/.config |
| 46 | KCONFIG_CONFIG = $(DOTCONFIG) |
| 47 | KCONFIG_AUTOHEADER := $(obj)/config.h |
| 48 | KCONFIG_AUTOCONFIG := $(obj)/auto.conf |
| 49 | KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd |
| 50 | KCONFIG_SPLITCONFIG := $(obj)/config |
| 51 | KCONFIG_TRISTATE := $(obj)/tristate.conf |
| 52 | KCONFIG_NEGATIVES := 1 |
| 53 | KCONFIG_STRICT := 1 |
| 54 | |
| 55 | COREBOOT_EXPORTS += KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG |
| 56 | COREBOOT_EXPORTS += KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE |
| 57 | COREBOOT_EXPORTS += KCONFIG_NEGATIVES KCONFIG_STRICT |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 58 | |
Patrick Georgi | e38d0a6 | 2011-03-01 08:09:22 +0000 | [diff] [blame] | 59 | # directory containing the toplevel Makefile.inc |
| 60 | TOPLEVEL := . |
| 61 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 62 | CONFIG_SHELL := sh |
| 63 | KBUILD_DEFCONFIG := configs/defconfig |
| 64 | UNAME_RELEASE := $(shell uname -r) |
Patrick Georgi | 89ec376 | 2010-12-08 19:58:30 +0000 | [diff] [blame] | 65 | HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG)) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 66 | MAKEFLAGS += -rR --no-print-directory |
| 67 | |
| 68 | # Make is silent per default, but 'make V=1' will show all compiler calls. |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 69 | Q:=@ |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 70 | ifneq ($(V),1) |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 71 | ifneq ($(Q),) |
| 72 | .SILENT: |
| 73 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 74 | endif |
| 75 | |
Julius Werner | 808a429 | 2015-03-13 11:05:07 -0700 | [diff] [blame] | 76 | # Disable implicit/built-in rules to make Makefile errors fail fast. |
| 77 | .SUFFIXES: |
| 78 | |
Patrick Georgi | f92068d | 2016-02-01 12:02:29 +0100 | [diff] [blame] | 79 | HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 80 | HOSTCXX = g++ |
Patrick Georgi | b3a18ac | 2012-09-13 22:13:33 +0200 | [diff] [blame] | 81 | HOSTCFLAGS := -g |
| 82 | HOSTCXXFLAGS := -g |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 83 | |
Patrick Georgi | 828e0e8 | 2015-04-04 15:50:20 +0200 | [diff] [blame] | 84 | PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I . |
| 85 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 86 | DOXYGEN := doxygen |
| 87 | DOXYGEN_OUTPUT_DIR := doxygen |
| 88 | |
Nico Huber | 7a1fbdb | 2017-08-23 23:48:13 +0200 | [diff] [blame] | 89 | export $(COREBOOT_EXPORTS) |
| 90 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 91 | all: real-all |
| 92 | |
Martin Roth | 4eea174 | 2015-11-25 11:50:04 -0700 | [diff] [blame] | 93 | help_coreboot help:: |
| 94 | @echo '*** coreboot platform targets ***' |
Martin Roth | 76f14b2 | 2015-11-18 13:09:23 -0700 | [diff] [blame] | 95 | @echo ' Use "make [target] V=1" for extra build debug information' |
| 96 | @echo ' all - Build coreboot' |
| 97 | @echo ' clean - Remove coreboot build artifacts' |
| 98 | @echo ' distclean - Remove build artifacts and config files' |
| 99 | @echo ' doxygen - Build doxygen documentation for coreboot' |
Martin Roth | b1574e3 | 2016-07-07 15:50:28 -0600 | [diff] [blame] | 100 | @echo ' doxyplatform - Build doxygen documentation for the current platform' |
Martin Roth | 76f14b2 | 2015-11-18 13:09:23 -0700 | [diff] [blame] | 101 | @echo ' printall - print makefile info for debugging' |
Werner Zeh | 2de6410 | 2016-01-12 12:45:49 +0100 | [diff] [blame] | 102 | @echo ' gitconfig - set up git to submit patches to coreboot' |
Martin Roth | 76f14b2 | 2015-11-18 13:09:23 -0700 | [diff] [blame] | 103 | @echo ' ctags / ctags-project - make ctags file for all of coreboot or current board' |
| 104 | @echo ' cscope / cscope-project - make cscope.out file for coreboot or current board' |
| 105 | @echo |
| 106 | |
Patrick Georgi | e38d0a6 | 2011-03-01 08:09:22 +0000 | [diff] [blame] | 107 | # This include must come _before_ the pattern rules below! |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 108 | # Order _does_ matter for pattern rules. |
Stefan Reinauer | de60c88 | 2015-06-29 14:44:37 -0700 | [diff] [blame] | 109 | include $(srck)/Makefile |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 110 | |
Patrick Georgi | cf036d1 | 2010-04-21 06:36:20 +0000 | [diff] [blame] | 111 | # Three cases where we don't need fully populated $(obj) lists: |
| 112 | # 1. when no .config exists |
| 113 | # 2. when make config (in any flavour) is run |
| 114 | # 3. when make distclean is run |
| 115 | # Don't waste time on reading all Makefile.incs in these cases |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 116 | ifeq ($(strip $(HAVE_DOTCONFIG)),) |
Patrick Georgi | cf036d1 | 2010-04-21 06:36:20 +0000 | [diff] [blame] | 117 | NOCOMPILE:=1 |
| 118 | endif |
| 119 | ifneq ($(MAKECMDGOALS),) |
Martin Roth | 109a7db | 2016-08-11 18:16:59 -0600 | [diff] [blame] | 120 | ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),) |
Patrick Georgi | cf036d1 | 2010-04-21 06:36:20 +0000 | [diff] [blame] | 121 | NOCOMPILE:=1 |
| 122 | endif |
Patrick Georgi | 02ae0bf | 2013-02-09 15:45:02 +0100 | [diff] [blame] | 123 | ifeq ($(MAKECMDGOALS), %clean) |
Zheng Bao | 0fd93d6 | 2012-10-22 16:36:03 +0800 | [diff] [blame] | 124 | NOMKDIR:=1 |
| 125 | endif |
Patrick Georgi | cf036d1 | 2010-04-21 06:36:20 +0000 | [diff] [blame] | 126 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 127 | |
Patrick Georgi | cf036d1 | 2010-04-21 06:36:20 +0000 | [diff] [blame] | 128 | ifeq ($(NOCOMPILE),1) |
Patrick Georgi | e38d0a6 | 2011-03-01 08:09:22 +0000 | [diff] [blame] | 129 | include $(TOPLEVEL)/Makefile.inc |
Martin Roth | 6797557 | 2016-03-07 16:38:52 -0700 | [diff] [blame] | 130 | include $(TOPLEVEL)/payloads/Makefile.inc |
Martin Roth | e624e27 | 2017-07-31 11:52:58 -0600 | [diff] [blame] | 131 | include $(TOPLEVEL)/util/testing/Makefile.inc |
Naresh G Solanki | 5744369 | 2017-08-31 22:32:49 +0530 | [diff] [blame] | 132 | -include $(TOPLEVEL)/site-local/Makefile.inc |
Martin Roth | 20aa043 | 2017-01-26 10:51:43 -0700 | [diff] [blame] | 133 | real-all: |
| 134 | @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2 |
| 135 | @echo "Please specify a config file or run 'make menuconfig' to" >&2 |
| 136 | @echo "generate a new config file." >&2 |
| 137 | @exit 1 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 138 | else |
| 139 | |
Paul Kocialkowski | 585c781 | 2016-07-13 11:00:41 +0200 | [diff] [blame] | 140 | include $(DOTCONFIG) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 141 | |
Patrick Georgi | 0ffef88 | 2017-01-19 23:20:14 +0100 | [diff] [blame] | 142 | # in addition to the dependency below, create the file if it doesn't exist |
| 143 | # to silence stupid warnings about a file that would be generated anyway. |
| 144 | $(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile))) |
| 145 | |
| 146 | .xcompile: util/xcompile/xcompile |
| 147 | rm -f $@ |
| 148 | $< $(XGCCPATH) > $@.tmp |
| 149 | \mv -f $@.tmp $@ 2> /dev/null |
| 150 | rm -f $@.tmp |
| 151 | |
Patrick Georgi | 6dda31d | 2015-11-19 15:15:33 +0100 | [diff] [blame] | 152 | -include .xcompile |
| 153 | |
| 154 | ifneq ($(XCOMPILE_COMPLETE),1) |
| 155 | $(shell rm -f .xcompile) |
| 156 | $(error .xcompile deleted because it's invalid. \ |
| 157 | Restarting the build should fix that, or explain the problem) |
| 158 | endif |
Patrick Georgi | 7b9762f | 2015-06-04 13:18:11 +0200 | [diff] [blame] | 159 | |
Patrick Georgi | cc84a00 | 2014-05-14 21:05:35 +0200 | [diff] [blame] | 160 | ifneq ($(CONFIG_MMX),y) |
| 161 | CFLAGS_x86_32 += -mno-mmx |
| 162 | endif |
| 163 | |
Patrick Georgi | cc84a00 | 2014-05-14 21:05:35 +0200 | [diff] [blame] | 164 | include toolchain.inc |
| 165 | |
Zheng Bao | 0764892 | 2015-11-13 10:42:27 +0800 | [diff] [blame] | 166 | strip_quotes = $(strip $(subst ",,$(subst \",,$(1)))) |
Martin Roth | bbf1399 | 2016-01-25 15:59:24 -0700 | [diff] [blame] | 167 | # fix makefile syntax highlighting after strip macro \" ")) |
Patrick Georgi | a84e98b | 2010-03-16 19:01:32 +0000 | [diff] [blame] | 168 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 169 | # The primary target needs to be here before we include the |
| 170 | # other files |
| 171 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 172 | real-all: real-target |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 173 | |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 174 | # must come rather early |
| 175 | .SECONDEXPANSION: |
| 176 | |
Stefan Reinauer | 0d869ed | 2015-07-17 13:31:16 -0700 | [diff] [blame] | 177 | $(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG) |
Patrick Georgi | 78a5f22 | 2017-01-30 15:29:34 +0100 | [diff] [blame] | 178 | +$(MAKE) oldconfig |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 179 | |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 180 | # Add a new class of source/object files to the build system |
| 181 | add-class= \ |
| 182 | $(eval $(1)-srcs:=) \ |
| 183 | $(eval $(1)-objs:=) \ |
| 184 | $(eval classes+=$(1)) |
Patrick Georgi | 8463dd9 | 2010-09-30 16:55:02 +0000 | [diff] [blame] | 185 | |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 186 | # Special classes are managed types with special behaviour |
| 187 | # On parse time, for each entry in variable $(1)-y |
| 188 | # a handler $(1)-handler is executed with the arguments: |
| 189 | # * $(1): directory the parser is in |
| 190 | # * $(2): current entry |
| 191 | add-special-class= \ |
| 192 | $(eval $(1):=) \ |
| 193 | $(eval special-classes+=$(1)) |
| 194 | |
Nico Huber | 81b09f4 | 2016-01-23 00:50:00 +0100 | [diff] [blame] | 195 | # Converts one or more source file paths to their corresponding build/ paths. |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 196 | # Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep |
| 197 | # their name. |
Nico Huber | 81b09f4 | 2016-01-23 00:50:00 +0100 | [diff] [blame] | 198 | # $1 stage name |
| 199 | # $2 file path (list) |
Nico Huber | 98fc426 | 2016-01-23 01:24:33 +0100 | [diff] [blame] | 200 | src-to-obj=\ |
| 201 | $(patsubst $(obj)/%,$(obj)/$(1)/%,\ |
| 202 | $(patsubst $(obj)/$(1)/%,$(obj)/%,\ |
Nico Huber | d011b6b | 2016-10-05 17:41:31 +0200 | [diff] [blame] | 203 | $(patsubst 3rdparty/%,$(obj)/%,\ |
Nico Huber | 98fc426 | 2016-01-23 01:24:33 +0100 | [diff] [blame] | 204 | $(patsubst src/%,$(obj)/%,\ |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 205 | $(patsubst %.ads,%.o,\ |
| 206 | $(patsubst %.adb,%.o,\ |
Nico Huber | 98fc426 | 2016-01-23 01:24:33 +0100 | [diff] [blame] | 207 | $(patsubst %.c,%.o,\ |
| 208 | $(patsubst %.S,%.o,\ |
Nico Huber | d011b6b | 2016-10-05 17:41:31 +0200 | [diff] [blame] | 209 | $(subst .$(1),,$(2)))))))))) |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 210 | |
| 211 | # Converts one or more source file paths to the corresponding build/ paths |
| 212 | # of their Ada library information (.ali) files. |
| 213 | # $1 stage name |
| 214 | # $2 file path (list) |
| 215 | src-to-ali=\ |
| 216 | $(patsubst $(obj)/%,$(obj)/$(1)/%,\ |
| 217 | $(patsubst $(obj)/$(1)/%,$(obj)/%,\ |
Nico Huber | d011b6b | 2016-10-05 17:41:31 +0200 | [diff] [blame] | 218 | $(patsubst 3rdparty/%,$(obj)/%,\ |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 219 | $(patsubst src/%,$(obj)/%,\ |
| 220 | $(patsubst %.ads,%.ali,\ |
| 221 | $(patsubst %.adb,%.ali,\ |
| 222 | $(subst .$(1),,\ |
Nico Huber | d011b6b | 2016-10-05 17:41:31 +0200 | [diff] [blame] | 223 | $(filter %.ads %.adb,$(2))))))))) |
Nico Huber | 81b09f4 | 2016-01-23 00:50:00 +0100 | [diff] [blame] | 224 | |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 225 | # Clean -y variables, include Makefile.inc |
Patrick Georgi | 8463dd9 | 2010-09-30 16:55:02 +0000 | [diff] [blame] | 226 | # Add paths to files in X-y to X-srcs |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 227 | # Add subdirs-y to subdirs |
| 228 | includemakefiles= \ |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 229 | $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \ |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 230 | $(eval -include $(1)) \ |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 231 | $(foreach class,$(classes-y), $(call add-class,$(class))) \ |
| 232 | $(foreach class,$(classes), \ |
| 233 | $(eval $(class)-srcs+= \ |
Vadim Bendebury | 5f7e4f0 | 2015-05-06 21:00:10 -0700 | [diff] [blame] | 234 | $$(subst $(absobj)/,$(obj)/, \ |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 235 | $$(subst $(top)/,, \ |
Vadim Bendebury | 5f7e4f0 | 2015-05-06 21:00:10 -0700 | [diff] [blame] | 236 | $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \ |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 237 | $(foreach special,$(special-classes), \ |
| 238 | $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \ |
Patrick Georgi | 64b8fba | 2017-10-28 05:26:01 -0400 | [diff] [blame] | 239 | $(eval subdirs+=$$(subst $(CURDIR)/,,$$(wildcard $$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))) |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 240 | |
Patrick Georgi | 8463dd9 | 2010-09-30 16:55:02 +0000 | [diff] [blame] | 241 | # For each path in $(subdirs) call includemakefiles |
Patrick Georgi | 47d68d8 | 2010-03-06 21:18:43 +0000 | [diff] [blame] | 242 | # Repeat until subdirs is empty |
| 243 | evaluate_subdirs= \ |
| 244 | $(eval cursubdirs:=$(subdirs)) \ |
| 245 | $(eval subdirs:=) \ |
| 246 | $(foreach dir,$(cursubdirs), \ |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 247 | $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \ |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 248 | $(if $(subdirs),$(eval $(call evaluate_subdirs))) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 249 | |
| 250 | # collect all object files eligible for building |
Patrick Georgi | e38d0a6 | 2011-03-01 08:09:22 +0000 | [diff] [blame] | 251 | subdirs:=$(TOPLEVEL) |
Julius Werner | e91d170 | 2017-03-20 15:32:15 -0700 | [diff] [blame] | 252 | postinclude-hooks := |
Patrick Georgi | 51e142f | 2010-03-27 17:18:39 +0000 | [diff] [blame] | 253 | $(eval $(call evaluate_subdirs)) |
Patrick Georgi | 70c85ea | 2013-02-16 01:06:57 +0100 | [diff] [blame] | 254 | ifeq ($(FAILBUILD),1) |
| 255 | $(error cannot continue build) |
| 256 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 257 | |
Julius Werner | e91d170 | 2017-03-20 15:32:15 -0700 | [diff] [blame] | 258 | # Run hooks registered by subdirectories that need to be evaluated after all files have been parsed |
| 259 | $(eval $(postinclude-hooks)) |
| 260 | |
Patrick Georgi | 94a4586 | 2011-10-25 14:32:21 -0700 | [diff] [blame] | 261 | # Eliminate duplicate mentions of source files in a class |
| 262 | $(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs)))) |
| 263 | |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 264 | # To track dependencies, we need all Ada specification (.ads) files in |
| 265 | # *-srcs. Extract / filter all specification files that have a matching |
| 266 | # body (.adb) file here (specifications without a body are valid sources |
| 267 | # in Ada). |
| 268 | $(foreach class,$(classes),$(eval $(class)-extra-specs := \ |
| 269 | $(filter \ |
| 270 | $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \ |
| 271 | $(filter %.ads,$($(class)-srcs))))) |
| 272 | $(foreach class,$(classes),$(eval $(class)-srcs := \ |
| 273 | $(filter-out $($(class)-extra-specs),$($(class)-srcs)))) |
| 274 | |
Patrick Georgi | 10f86b0 | 2015-03-27 16:56:23 +0100 | [diff] [blame] | 275 | $(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs)))) |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 276 | $(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs)))) |
| 277 | |
| 278 | # For Ada includes |
| 279 | $(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs))))) |
Patrick Georgi | d3428b0 | 2010-02-24 13:18:01 +0000 | [diff] [blame] | 280 | |
Nico Huber | 963bed5 | 2013-05-15 11:47:51 +0200 | [diff] [blame] | 281 | # Save all objs before processing them (for dependency inclusion) |
| 282 | originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var))) |
| 283 | |
Patrick Georgi | 79f9010 | 2012-11-25 14:31:08 +0100 | [diff] [blame] | 284 | # Call post-processors if they're defined |
| 285 | $(foreach class,$(classes),\ |
| 286 | $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs))))) |
| 287 | |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 288 | allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var))) |
| 289 | allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var))) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 290 | alldirs:=$(sort $(abspath $(dir $(allobjs)))) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 291 | |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 292 | # Reads dependencies from an Ada library information (.ali) file |
| 293 | # Only basenames (with suffix) are preserved so we have to look the |
| 294 | # paths up in $($(stage)-srcs). |
| 295 | # $1 stage name |
| 296 | # $2 ali file |
| 297 | create_ada_deps=$$(if $(2),\ |
| 298 | gnat.adc \ |
| 299 | $$(filter \ |
| 300 | $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \ |
| 301 | $$($(1)-srcs) $$($(1)-extra-specs))) |
| 302 | |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 303 | # macro to define template macros that are used by use_template macro |
| 304 | define create_cc_template |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 305 | # $1 obj class |
Patrick Georgi | 990e7c9 | 2015-04-03 10:47:15 +0200 | [diff] [blame] | 306 | # $2 source suffix (c, S, ld, ...) |
Marc Jones | a38ccfd | 2014-11-06 15:50:22 -0700 | [diff] [blame] | 307 | # $3 additional compiler flags |
| 308 | # $4 additional dependencies |
Patrick Georgi | b8cdd9b | 2011-02-17 20:48:45 +0000 | [diff] [blame] | 309 | ifn$(EMPTY)def $(1)-objs_$(2)_template |
Patrick Georgi | 8463dd9 | 2010-09-30 16:55:02 +0000 | [diff] [blame] | 310 | de$(EMPTY)fine $(1)-objs_$(2)_template |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 311 | ifn$(EMPTY)eq ($(filter ads adb,$(2)),) |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 312 | $$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $$(call create_ada_deps,$1,$$(call src-to-ali,$1,$$(1).$2)) $(KCONFIG_AUTOHEADER) $(4) |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 313 | @printf " GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n" |
| 314 | $(GCC_$(1)) \ |
| 315 | $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs)) \ |
| 316 | $(3) -c -o $$$$@ $$$$< |
| 317 | el$(EMPTY)se |
| 318 | $$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $(KCONFIG_AUTOHEADER) $(4) |
Patrick Georgi | 1cd76e7 | 2010-04-19 20:39:22 +0000 | [diff] [blame] | 319 | @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n" |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 320 | $(CC_$(1)) \ |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 321 | -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@) \ |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 322 | $(3) -c -o $$$$@ $$$$< |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 323 | end$(EMPTY)if |
Patrick Georgi patrick.georgi | c5f773d | 2010-03-16 12:01:13 +0000 | [diff] [blame] | 324 | en$(EMPTY)def |
Patrick Georgi | b8cdd9b | 2011-02-17 20:48:45 +0000 | [diff] [blame] | 325 | end$(EMPTY)if |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 326 | endef |
| 327 | |
Patrick Georgi | b8cdd9b | 2011-02-17 20:48:45 +0000 | [diff] [blame] | 328 | filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs)))) |
| 329 | $(foreach class,$(classes), \ |
| 330 | $(foreach type,$(call filetypes-of-class,$(class)), \ |
Patrick Georgi | 2459aee | 2015-03-27 15:27:21 +0100 | [diff] [blame] | 331 | $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \ |
Patrick Georgi | 416ab38 | 2015-04-03 10:19:38 +0200 | [diff] [blame] | 332 | $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\ |
| 333 | $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps)))))) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 334 | |
Patrick Georgi | d69839b | 2015-04-03 10:32:17 +0200 | [diff] [blame] | 335 | foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file))))) |
Patrick Georgi | 5826265 | 2011-02-17 20:47:49 +0000 | [diff] [blame] | 336 | $(eval $(foreach class,$(classes),$(call foreach-src,$(class)))) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 337 | |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 338 | # To supported complex package initializations, we need to call the |
| 339 | # emitted code explicitly. gnatbind gathers all the calls for us |
| 340 | # and exports them as a procedure $(stage)_adainit(). Every stage that |
| 341 | # uses Ada code has to call it! |
| 342 | define gnatbind_template |
| 343 | # $1 class |
| 344 | $$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis)) |
| 345 | @printf " BIND $$(subst $$(obj)/,,$$@)\n" |
| 346 | # We have to give gnatbind a simple filename (without leading |
| 347 | # path components) so just cd there. |
| 348 | cd $$(dir $$@) && \ |
| 349 | $$(GNATBIND_$(1)) -a -n \ |
Nico Huber | be5492a | 2015-09-29 16:41:19 +0200 | [diff] [blame] | 350 | --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \ |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 351 | -L$(1)_ada -o $$(notdir $$@) \ |
| 352 | $$(subst $$(dir $$@),,$$^) |
| 353 | $$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 354 | @printf " GCC $$(subst $$(obj)/,,$$@)\n" |
| 355 | $(GCC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$< |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 356 | $(1)-objs += $$(obj)/$(1)/b__$(1).o |
Nico Huber | ddb2465 | 2016-09-19 11:50:04 +0200 | [diff] [blame] | 357 | $($(1)-alis): %.ali: %.o ; |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 358 | endef |
| 359 | |
Nico Huber | be5492a | 2015-09-29 16:41:19 +0200 | [diff] [blame] | 360 | $(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \ |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 361 | $(if $($(class)-alis),$(call gnatbind_template,$(class))))) |
| 362 | |
Julius Werner | f97b88b | 2014-12-05 12:32:09 -0800 | [diff] [blame] | 363 | DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs))) |
Stefan Reinauer | 6bee951 | 2010-03-24 15:51:48 +0000 | [diff] [blame] | 364 | -include $(DEPENDENCIES) |
| 365 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 366 | printall: |
Martin Roth | 09b6444 | 2016-06-05 10:52:43 -0600 | [diff] [blame] | 367 | @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; ) |
| 368 | @echo alldirs: $(alldirs) | tr ' ' '\n'; echo |
| 369 | @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo |
| 370 | @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo |
| 371 | @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; ) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 372 | endif |
| 373 | |
Patrick Georgi | 40ad842 | 2011-05-21 22:18:59 +0000 | [diff] [blame] | 374 | ifndef NOMKDIR |
Stefan Reinauer | de60c88 | 2015-06-29 14:44:37 -0700 | [diff] [blame] | 375 | $(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs)) |
Patrick Georgi | 40ad842 | 2011-05-21 22:18:59 +0000 | [diff] [blame] | 376 | endif |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 377 | |
Martin Roth | 9b0204d | 2017-09-18 09:25:18 -0600 | [diff] [blame] | 378 | $(obj)/project_filelist.txt: |
| 379 | if [ -z "$(wildcard $(obj)/coreboot.rom)" ]; then \ |
| 380 | echo "*** Error: Project must be built before generating file list ***"; \ |
| 381 | exit 1; \ |
| 382 | fi |
Martin Roth | 8a02727 | 2017-09-26 09:53:30 -0600 | [diff] [blame] | 383 | find $(obj) -path "$(obj)/util" -prune -o -name "*.d" -exec cat {} \; | \ |
| 384 | sed "s|$(top)/||" | sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \ |
Martin Roth | 9c1b33e | 2015-07-29 14:55:18 -0700 | [diff] [blame] | 385 | grep -v '\.o$$' > $(obj)/project_filelist.txt |
| 386 | |
Martin Roth | 9b0204d | 2017-09-18 09:25:18 -0600 | [diff] [blame] | 387 | filelist: $(obj)/project_filelist.txt |
Martin Roth | a18353d | 2017-06-06 06:44:46 -0600 | [diff] [blame] | 388 | printf "\nFiles used in build:\n" |
| 389 | cat $(obj)/project_filelist.txt |
| 390 | |
Martin Roth | 9c1b33e | 2015-07-29 14:55:18 -0700 | [diff] [blame] | 391 | #works with either exuberant ctags or ctags.emacs |
| 392 | ctags-project: clean-ctags $(obj)/project_filelist.txt |
| 393 | cat $(obj)/project_filelist.txt | \ |
| 394 | xargs ctags -o tags |
| 395 | |
| 396 | cscope-project: clean-cscope $(obj)/project_filelist.txt |
| 397 | cat $(obj)/project_filelist.txt | xargs cscope -b |
| 398 | |
Warren Turkal | a9fc330 | 2010-09-03 08:57:32 +0000 | [diff] [blame] | 399 | cscope: |
| 400 | cscope -bR |
| 401 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 402 | doxy: doxygen |
| 403 | doxygen: |
Nicky Sielicki | e08a2a5 | 2015-06-06 08:55:16 -0500 | [diff] [blame] | 404 | $(DOXYGEN) Documentation/Doxyfile.coreboot |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 405 | |
Martin Roth | d7689e4 | 2014-12-29 14:56:19 -0700 | [diff] [blame] | 406 | doxygen_simple: |
Nicky Sielicki | e08a2a5 | 2015-06-06 08:55:16 -0500 | [diff] [blame] | 407 | $(DOXYGEN) Documentation/Doxyfile.coreboot_simple |
Martin Roth | d7689e4 | 2014-12-29 14:56:19 -0700 | [diff] [blame] | 408 | |
Martin Roth | b1574e3 | 2016-07-07 15:50:28 -0600 | [diff] [blame] | 409 | doxyplatform doxygen_platform: $(obj)/project_filelist.txt |
| 410 | echo |
| 411 | echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)" |
| 412 | export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \ |
| 413 | mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \ |
| 414 | export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \ |
| 415 | export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \ |
| 416 | $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform |
| 417 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 418 | doxyclean: doxygen-clean |
| 419 | doxygen-clean: |
Patrick Georgi | 2b7418e | 2009-08-25 19:38:46 +0000 | [diff] [blame] | 420 | rm -rf $(DOXYGEN_OUTPUT_DIR) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 421 | |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 422 | clean-for-update: doxygen-clean clean-for-update-target |
Patrick Georgi | 02ae0bf | 2013-02-09 15:45:02 +0100 | [diff] [blame] | 423 | rm -rf $(obj) .xcompile |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 424 | |
Martin Roth | 20cd54f | 2017-03-26 18:49:02 -0600 | [diff] [blame] | 425 | clean: clean-for-update clean-target clean-utils |
Patrick Georgi | 71b8480 | 2011-02-22 14:35:05 +0000 | [diff] [blame] | 426 | rm -f .ccwrap |
Warren Turkal | 0e8f204 | 2010-09-27 21:14:19 +0000 | [diff] [blame] | 427 | |
Warren Turkal | a9fc330 | 2010-09-03 08:57:32 +0000 | [diff] [blame] | 428 | clean-cscope: |
| 429 | rm -f cscope.out |
| 430 | |
Martin Roth | 9c1b33e | 2015-07-29 14:55:18 -0700 | [diff] [blame] | 431 | clean-ctags: |
| 432 | rm -f tags |
| 433 | |
Martin Roth | 20cd54f | 2017-03-26 18:49:02 -0600 | [diff] [blame] | 434 | clean-utils: |
Martin Roth | 1d721ed | 2017-07-07 10:49:48 -0600 | [diff] [blame] | 435 | $(foreach tool, $(TOOLLIST), \ |
| 436 | $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;) |
Martin Roth | 20cd54f | 2017-03-26 18:49:02 -0600 | [diff] [blame] | 437 | |
| 438 | distclean-utils: |
Martin Roth | 1d721ed | 2017-07-07 10:49:48 -0600 | [diff] [blame] | 439 | $(foreach tool, $(TOOLLIST), \ |
| 440 | $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \ |
Martin Roth | 20cd54f | 2017-03-26 18:49:02 -0600 | [diff] [blame] | 441 | rm -f /util/$(tool)/junit.xml;) |
| 442 | |
| 443 | distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils |
Patrick Georgi | 80656af | 2017-04-26 11:58:44 +0200 | [diff] [blame] | 444 | rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile |
Martin Roth | 20cd54f | 2017-03-26 18:49:02 -0600 | [diff] [blame] | 445 | rm -rf coreboot-builds coreboot-builds-chromeos |
| 446 | rm -f abuild*.xml junit.xml* util/lint/junit.xml |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 447 | |
Martin Roth | d7689e4 | 2014-12-29 14:56:19 -0700 | [diff] [blame] | 448 | .PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple |
Martin Roth | 9c1b33e | 2015-07-29 14:55:18 -0700 | [diff] [blame] | 449 | .PHONY: ctags-project cscope-project clean-ctags |