blob: 98e3eb5796c174c956be64c32314d1ae253a97c8 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
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 Reinauer8ed1b6d2010-01-19 21:13:44 +00006## Copyright (C) 2009-2010 coresystems GmbH
Patrick Georgi71b84802011-02-22 14:35:05 +00007## Copyright (C) 2011 secunet Security Networks AG
Patrick Georgi0588d192009-08-12 15:00:51 +00008##
Patrick Georgi3bda0442011-06-30 15:48:57 +02009## 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 Georgi0588d192009-08-12 15:00:51 +000019##
Patrick Georgi3bda0442011-06-30 15:48:57 +020020## 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 Georgi0588d192009-08-12 15:00:51 +000031##
32
Himanshu Sahdevd1e18d92019-09-16 15:55:03 +053033ifneq ($(words $(CURDIR)),1)
34 $(error Error: Path to the main directory cannot contain spaces)
35endif
Nico Huber7a1fbdb2017-08-23 23:48:13 +020036top := $(CURDIR)
37src := src
38srck := $(top)/util/kconfig
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -070039obj ?= build
40override obj := $(subst $(top)/,,$(abspath $(obj)))
Nico Huber7a1fbdb2017-08-23 23:48:13 +020041objutil ?= $(obj)/util
42objk := $(objutil)/kconfig
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -070043absobj := $(abspath $(obj))
Patrick Georgi0588d192009-08-12 15:00:51 +000044
Yu-Ping Wu0beddb52020-03-09 10:58:37 +080045VBOOT_HOST_BUILD ?= $(abspath $(objutil)/vboot_lib)
46
Nico Huber7a1fbdb2017-08-23 23:48:13 +020047COREBOOT_EXPORTS := COREBOOT_EXPORTS
48COREBOOT_EXPORTS += top src srck obj objutil objk
Patrick Georgi0588d192009-08-12 15:00:51 +000049
Alexander Couzensbe756f12019-09-13 04:22:12 +020050# reproducible builds
51LANG:=C
52LC_ALL:=C
53TZ:=UTC0
54COREBOOT_EXPORTS += LANG LC_ALL TZ
55
Nico Huber7a1fbdb2017-08-23 23:48:13 +020056DOTCONFIG ?= $(top)/.config
57KCONFIG_CONFIG = $(DOTCONFIG)
Nico Huber533bc0a2019-01-01 19:03:33 +010058KCONFIG_AUTOADS := $(obj)/cb-config.ads
Nico Huber7a1fbdb2017-08-23 23:48:13 +020059KCONFIG_AUTOHEADER := $(obj)/config.h
60KCONFIG_AUTOCONFIG := $(obj)/auto.conf
61KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd
62KCONFIG_SPLITCONFIG := $(obj)/config
63KCONFIG_TRISTATE := $(obj)/tristate.conf
64KCONFIG_NEGATIVES := 1
65KCONFIG_STRICT := 1
Nico Huber533bc0a2019-01-01 19:03:33 +010066KCONFIG_PACKAGE := CB.Config
Nico Huber7a1fbdb2017-08-23 23:48:13 +020067
68COREBOOT_EXPORTS += KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG
69COREBOOT_EXPORTS += KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE
70COREBOOT_EXPORTS += KCONFIG_NEGATIVES KCONFIG_STRICT
Nico Huber533bc0a2019-01-01 19:03:33 +010071COREBOOT_EXPORTS += KCONFIG_AUTOADS KCONFIG_PACKAGE
Patrick Georgi0588d192009-08-12 15:00:51 +000072
Patrick Georgie38d0a62011-03-01 08:09:22 +000073# directory containing the toplevel Makefile.inc
74TOPLEVEL := .
75
Patrick Georgi0588d192009-08-12 15:00:51 +000076CONFIG_SHELL := sh
77KBUILD_DEFCONFIG := configs/defconfig
78UNAME_RELEASE := $(shell uname -r)
Patrick Georgi89ec3762010-12-08 19:58:30 +000079HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
Patrick Georgi0588d192009-08-12 15:00:51 +000080MAKEFLAGS += -rR --no-print-directory
81
82# Make is silent per default, but 'make V=1' will show all compiler calls.
Patrick Georgi2b7418e2009-08-25 19:38:46 +000083Q:=@
Patrick Georgi0588d192009-08-12 15:00:51 +000084ifneq ($(V),1)
Patrick Georgi2b7418e2009-08-25 19:38:46 +000085ifneq ($(Q),)
86.SILENT:
Nico Huber7325ac52020-02-16 11:47:52 +010087MAKEFLAGS += -s
Patrick Georgi2b7418e2009-08-25 19:38:46 +000088endif
Patrick Georgi0588d192009-08-12 15:00:51 +000089endif
90
Julius Werner808a4292015-03-13 11:05:07 -070091# Disable implicit/built-in rules to make Makefile errors fail fast.
92.SUFFIXES:
93
Patrick Georgif92068d2016-02-01 12:02:29 +010094HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc)
Patrick Georgi0588d192009-08-12 15:00:51 +000095HOSTCXX = g++
Patrick Georgib3a18ac2012-09-13 22:13:33 +020096HOSTCFLAGS := -g
97HOSTCXXFLAGS := -g
Patrick Georgi0588d192009-08-12 15:00:51 +000098
Patrick Georgi828e0e82015-04-04 15:50:20 +020099PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I .
100
Patrick Georgi0588d192009-08-12 15:00:51 +0000101DOXYGEN := doxygen
102DOXYGEN_OUTPUT_DIR := doxygen
103
Nico Huber7a1fbdb2017-08-23 23:48:13 +0200104export $(COREBOOT_EXPORTS)
105
Patrick Georgi71b84802011-02-22 14:35:05 +0000106all: real-all
107
Martin Roth4eea1742015-11-25 11:50:04 -0700108help_coreboot help::
109 @echo '*** coreboot platform targets ***'
Martin Roth76f14b22015-11-18 13:09:23 -0700110 @echo ' Use "make [target] V=1" for extra build debug information'
111 @echo ' all - Build coreboot'
112 @echo ' clean - Remove coreboot build artifacts'
113 @echo ' distclean - Remove build artifacts and config files'
114 @echo ' doxygen - Build doxygen documentation for coreboot'
Martin Rothb1574e32016-07-07 15:50:28 -0600115 @echo ' doxyplatform - Build doxygen documentation for the current platform'
Martin Roth763e4932018-01-27 16:42:43 -0700116 @echo ' filelist - Show files used in current build'
Martin Roth76f14b22015-11-18 13:09:23 -0700117 @echo ' printall - print makefile info for debugging'
Werner Zeh2de64102016-01-12 12:45:49 +0100118 @echo ' gitconfig - set up git to submit patches to coreboot'
Martin Roth76f14b22015-11-18 13:09:23 -0700119 @echo ' ctags / ctags-project - make ctags file for all of coreboot or current board'
120 @echo ' cscope / cscope-project - make cscope.out file for coreboot or current board'
121 @echo
122
Patrick Georgie38d0a62011-03-01 08:09:22 +0000123# This include must come _before_ the pattern rules below!
Patrick Georgi71b84802011-02-22 14:35:05 +0000124# Order _does_ matter for pattern rules.
Patrick Georgi3e8ef102019-11-22 16:54:17 +0100125include $(srck)/Makefile.inc
Patrick Georgi71b84802011-02-22 14:35:05 +0000126
Patrick Georgicf036d12010-04-21 06:36:20 +0000127# Three cases where we don't need fully populated $(obj) lists:
128# 1. when no .config exists
129# 2. when make config (in any flavour) is run
130# 3. when make distclean is run
131# Don't waste time on reading all Makefile.incs in these cases
Patrick Georgi0588d192009-08-12 15:00:51 +0000132ifeq ($(strip $(HAVE_DOTCONFIG)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000133NOCOMPILE:=1
134endif
135ifneq ($(MAKECMDGOALS),)
Martin Roth109a7db2016-08-11 18:16:59 -0600136ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000137NOCOMPILE:=1
138endif
Raul E Rangel5592cfd2019-07-23 11:13:40 -0600139ifneq ($(filter %clean lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
Zheng Bao0fd93d62012-10-22 16:36:03 +0800140NOMKDIR:=1
141endif
Patrick Georgicf036d12010-04-21 06:36:20 +0000142endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000143
Raul E Rangel6325ce22019-07-10 16:46:34 -0600144.xcompile: util/xcompile/xcompile
145 rm -f $@
146 $< $(XGCCPATH) > $@.tmp
147 \mv -f $@.tmp $@ 2> /dev/null
148 rm -f $@.tmp
149
Patrick Georgicf036d12010-04-21 06:36:20 +0000150ifeq ($(NOCOMPILE),1)
Patrick Georgie38d0a62011-03-01 08:09:22 +0000151include $(TOPLEVEL)/Makefile.inc
Martin Roth67975572016-03-07 16:38:52 -0700152include $(TOPLEVEL)/payloads/Makefile.inc
Martin Rothe624e272017-07-31 11:52:58 -0600153include $(TOPLEVEL)/util/testing/Makefile.inc
Werner Zehb7f1c2d2019-10-04 07:01:13 +0200154-include $(TOPLEVEL)/site-local/Makefile.inc
Martin Roth20aa0432017-01-26 10:51:43 -0700155real-all:
156 @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
157 @echo "Please specify a config file or run 'make menuconfig' to" >&2
158 @echo "generate a new config file." >&2
159 @exit 1
Patrick Georgi0588d192009-08-12 15:00:51 +0000160else
161
Paul Kocialkowski585c7812016-07-13 11:00:41 +0200162include $(DOTCONFIG)
Patrick Georgi0588d192009-08-12 15:00:51 +0000163
Patrick Georgi0ffef882017-01-19 23:20:14 +0100164# in addition to the dependency below, create the file if it doesn't exist
165# to silence stupid warnings about a file that would be generated anyway.
166$(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile)))
167
Patrick Georgi6dda31d2015-11-19 15:15:33 +0100168-include .xcompile
169
170ifneq ($(XCOMPILE_COMPLETE),1)
171$(shell rm -f .xcompile)
172$(error .xcompile deleted because it's invalid. \
173 Restarting the build should fix that, or explain the problem)
174endif
Patrick Georgi7b9762f2015-06-04 13:18:11 +0200175
Patrick Georgicc84a002014-05-14 21:05:35 +0200176ifneq ($(CONFIG_MMX),y)
177CFLAGS_x86_32 += -mno-mmx
178endif
179
Patrick Georgicc84a002014-05-14 21:05:35 +0200180include toolchain.inc
181
Zheng Bao07648922015-11-13 10:42:27 +0800182strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
Martin Rothbbf13992016-01-25 15:59:24 -0700183# fix makefile syntax highlighting after strip macro \" "))
Patrick Georgia84e98b2010-03-16 19:01:32 +0000184
Patrick Georgi0588d192009-08-12 15:00:51 +0000185# The primary target needs to be here before we include the
186# other files
187
Patrick Georgi71b84802011-02-22 14:35:05 +0000188real-all: real-target
Patrick Georgi0588d192009-08-12 15:00:51 +0000189
Patrick Georgi51e142f2010-03-27 17:18:39 +0000190# must come rather early
191.SECONDEXPANSION:
Raul E Rangelcc6dc902018-08-06 16:13:32 -0600192.DELETE_ON_ERROR:
Patrick Georgi51e142f2010-03-27 17:18:39 +0000193
Jonathan Neuschäferd2c02422018-12-11 13:06:40 +0100194$(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG) $(objutil)/kconfig/conf
Patrick Georgi78a5f222017-01-30 15:29:34 +0100195 +$(MAKE) oldconfig
Patrick Georgi0588d192009-08-12 15:00:51 +0000196
Nico Huber533bc0a2019-01-01 19:03:33 +0100197$(KCONFIG_AUTOCONFIG): $(KCONFIG_AUTOHEADER)
198 true
199
Nico Hubereafc8152019-10-25 12:47:14 +0200200$(KCONFIG_AUTOADS): $(KCONFIG_CONFIG) $(KCONFIG_AUTOHEADER) $(objutil)/kconfig/toada
Nico Huber533bc0a2019-01-01 19:03:33 +0100201 $(objutil)/kconfig/toada CB.Config <$< >$@
202
Nico Huberb5679772019-01-01 22:06:01 +0100203$(obj)/%/$(notdir $(KCONFIG_AUTOADS)): $(KCONFIG_AUTOADS)
204 cp $< $@
205
Patrick Georgi58262652011-02-17 20:47:49 +0000206# Add a new class of source/object files to the build system
207add-class= \
208 $(eval $(1)-srcs:=) \
209 $(eval $(1)-objs:=) \
210 $(eval classes+=$(1))
Patrick Georgi8463dd92010-09-30 16:55:02 +0000211
Patrick Georgi58262652011-02-17 20:47:49 +0000212# Special classes are managed types with special behaviour
213# On parse time, for each entry in variable $(1)-y
214# a handler $(1)-handler is executed with the arguments:
215# * $(1): directory the parser is in
216# * $(2): current entry
217add-special-class= \
218 $(eval $(1):=) \
219 $(eval special-classes+=$(1))
220
Nico Huber81b09f42016-01-23 00:50:00 +0100221# Converts one or more source file paths to their corresponding build/ paths.
Nico Huber2e09d2b2016-01-14 01:13:33 +0100222# Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
223# their name.
Nico Huber81b09f42016-01-23 00:50:00 +0100224# $1 stage name
225# $2 file path (list)
Nico Huber98fc4262016-01-23 01:24:33 +0100226src-to-obj=\
227 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
228 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200229 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber98fc4262016-01-23 01:24:33 +0100230 $(patsubst src/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100231 $(patsubst %.ads,%.o,\
232 $(patsubst %.adb,%.o,\
Nico Huber98fc4262016-01-23 01:24:33 +0100233 $(patsubst %.c,%.o,\
234 $(patsubst %.S,%.o,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200235 $(subst .$(1),,$(2))))))))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100236
237# Converts one or more source file paths to the corresponding build/ paths
238# of their Ada library information (.ali) files.
239# $1 stage name
240# $2 file path (list)
241src-to-ali=\
242 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
243 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200244 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100245 $(patsubst src/%,$(obj)/%,\
246 $(patsubst %.ads,%.ali,\
247 $(patsubst %.adb,%.ali,\
248 $(subst .$(1),,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200249 $(filter %.ads %.adb,$(2)))))))))
Nico Huber81b09f42016-01-23 00:50:00 +0100250
Patrick Georgi47d68d82010-03-06 21:18:43 +0000251# Clean -y variables, include Makefile.inc
Patrick Georgi8463dd92010-09-30 16:55:02 +0000252# Add paths to files in X-y to X-srcs
Patrick Georgi47d68d82010-03-06 21:18:43 +0000253# Add subdirs-y to subdirs
254includemakefiles= \
Patrick Georgi58262652011-02-17 20:47:49 +0000255 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
Patrick Georgi47d68d82010-03-06 21:18:43 +0000256 $(eval -include $(1)) \
Patrick Georgi58262652011-02-17 20:47:49 +0000257 $(foreach class,$(classes-y), $(call add-class,$(class))) \
Arthur Heymans5e5fd412019-06-04 13:16:28 +0200258 $(foreach special,$(special-classes), \
259 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
Patrick Georgi58262652011-02-17 20:47:49 +0000260 $(foreach class,$(classes), \
261 $(eval $(class)-srcs+= \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700262 $$(subst $(absobj)/,$(obj)/, \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000263 $$(subst $(top)/,, \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700264 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \
Patrick Georgi64b8fba2017-10-28 05:26:01 -0400265 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(wildcard $$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y))))))
Patrick Georgi47d68d82010-03-06 21:18:43 +0000266
Patrick Georgi8463dd92010-09-30 16:55:02 +0000267# For each path in $(subdirs) call includemakefiles
Patrick Georgi47d68d82010-03-06 21:18:43 +0000268# Repeat until subdirs is empty
269evaluate_subdirs= \
270 $(eval cursubdirs:=$(subdirs)) \
271 $(eval subdirs:=) \
272 $(foreach dir,$(cursubdirs), \
Patrick Georgi58262652011-02-17 20:47:49 +0000273 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000274 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000275
276# collect all object files eligible for building
Patrick Georgie38d0a62011-03-01 08:09:22 +0000277subdirs:=$(TOPLEVEL)
Julius Wernere91d1702017-03-20 15:32:15 -0700278postinclude-hooks :=
Patrick Georgi51e142f2010-03-27 17:18:39 +0000279$(eval $(call evaluate_subdirs))
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100280ifeq ($(FAILBUILD),1)
281$(error cannot continue build)
282endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000283
Julius Wernere91d1702017-03-20 15:32:15 -0700284# Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
285$(eval $(postinclude-hooks))
286
Patrick Georgi94a45862011-10-25 14:32:21 -0700287# Eliminate duplicate mentions of source files in a class
288$(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
289
Nico Huberb5679772019-01-01 22:06:01 +0100290# Build Kconfig .ads if necessary
291ifeq ($(CONFIG_RAMSTAGE_ADA),y)
292ramstage-srcs += $(obj)/ramstage/$(notdir $(KCONFIG_AUTOADS))
293endif
294
Nico Huber2e09d2b2016-01-14 01:13:33 +0100295# To track dependencies, we need all Ada specification (.ads) files in
296# *-srcs. Extract / filter all specification files that have a matching
297# body (.adb) file here (specifications without a body are valid sources
298# in Ada).
299$(foreach class,$(classes),$(eval $(class)-extra-specs := \
300 $(filter \
301 $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \
302 $(filter %.ads,$($(class)-srcs)))))
303$(foreach class,$(classes),$(eval $(class)-srcs := \
304 $(filter-out $($(class)-extra-specs),$($(class)-srcs))))
305
Patrick Georgi10f86b02015-03-27 16:56:23 +0100306$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100307$(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs))))
308
309# For Ada includes
310$(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs)))))
Patrick Georgid3428b02010-02-24 13:18:01 +0000311
Nico Huber963bed52013-05-15 11:47:51 +0200312# Save all objs before processing them (for dependency inclusion)
313originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
314
Patrick Georgi79f90102012-11-25 14:31:08 +0100315# Call post-processors if they're defined
316$(foreach class,$(classes),\
317 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
318
Patrick Georgi58262652011-02-17 20:47:49 +0000319allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
320allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000321alldirs:=$(sort $(abspath $(dir $(allobjs))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000322
Nico Huber2e09d2b2016-01-14 01:13:33 +0100323# Reads dependencies from an Ada library information (.ali) file
324# Only basenames (with suffix) are preserved so we have to look the
325# paths up in $($(stage)-srcs).
326# $1 stage name
327# $2 ali file
328create_ada_deps=$$(if $(2),\
329 gnat.adc \
330 $$(filter \
331 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
332 $$($(1)-srcs) $$($(1)-extra-specs)))
333
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000334# macro to define template macros that are used by use_template macro
335define create_cc_template
Patrick Georgi71b84802011-02-22 14:35:05 +0000336# $1 obj class
Patrick Georgi990e7c92015-04-03 10:47:15 +0200337# $2 source suffix (c, S, ld, ...)
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700338# $3 additional compiler flags
339# $4 additional dependencies
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000340ifn$(EMPTY)def $(1)-objs_$(2)_template
Patrick Georgi8463dd92010-09-30 16:55:02 +0000341de$(EMPTY)fine $(1)-objs_$(2)_template
Nico Huber1850aa62017-09-03 23:42:58 +0200342ifn$(EMPTY)eq ($(filter ads adb,$(2)),)
Nico Huberb5679772019-01-01 22:06:01 +0100343$$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $$(call create_ada_deps,$1,$$(call src-to-ali,$1,$$(1).$2)) $(4)
Nico Huber1850aa62017-09-03 23:42:58 +0200344 @printf " GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
345 $(GCC_$(1)) \
346 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs)) \
347 $(3) -c -o $$$$@ $$$$<
348el$(EMPTY)se
349$$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $(KCONFIG_AUTOHEADER) $(4)
Patrick Georgi1cd76e72010-04-19 20:39:22 +0000350 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
Nico Huber2e09d2b2016-01-14 01:13:33 +0100351 $(CC_$(1)) \
Nico Huber1850aa62017-09-03 23:42:58 +0200352 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@) \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100353 $(3) -c -o $$$$@ $$$$<
Nico Huber1850aa62017-09-03 23:42:58 +0200354end$(EMPTY)if
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000355en$(EMPTY)def
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000356end$(EMPTY)if
Patrick Georgi0588d192009-08-12 15:00:51 +0000357endef
358
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000359filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
360$(foreach class,$(classes), \
361 $(foreach type,$(call filetypes-of-class,$(class)), \
Patrick Georgi2459aee2015-03-27 15:27:21 +0100362 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
Patrick Georgi416ab382015-04-03 10:19:38 +0200363 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
364 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000365
Patrick Georgid69839b2015-04-03 10:32:17 +0200366foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
Patrick Georgi58262652011-02-17 20:47:49 +0000367$(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000368
Nico Huber2e09d2b2016-01-14 01:13:33 +0100369# To supported complex package initializations, we need to call the
370# emitted code explicitly. gnatbind gathers all the calls for us
371# and exports them as a procedure $(stage)_adainit(). Every stage that
372# uses Ada code has to call it!
373define gnatbind_template
374# $1 class
375$$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
376 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
377 # We have to give gnatbind a simple filename (without leading
378 # path components) so just cd there.
379 cd $$(dir $$@) && \
380 $$(GNATBIND_$(1)) -a -n \
Nico Huberbe5492a2015-09-29 16:41:19 +0200381 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100382 -L$(1)_ada -o $$(notdir $$@) \
383 $$(subst $$(dir $$@),,$$^)
384$$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
Nico Huber1850aa62017-09-03 23:42:58 +0200385 @printf " GCC $$(subst $$(obj)/,,$$@)\n"
386 $(GCC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
Nico Huber2e09d2b2016-01-14 01:13:33 +0100387$(1)-objs += $$(obj)/$(1)/b__$(1).o
Nico Huberddb24652016-09-19 11:50:04 +0200388$($(1)-alis): %.ali: %.o ;
Nico Huber2e09d2b2016-01-14 01:13:33 +0100389endef
390
Nico Huberbe5492a2015-09-29 16:41:19 +0200391$(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100392 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
393
Julius Wernerf97b88b2014-12-05 12:32:09 -0800394DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
Stefan Reinauer6bee9512010-03-24 15:51:48 +0000395-include $(DEPENDENCIES)
396
Patrick Georgi0588d192009-08-12 15:00:51 +0000397printall:
Martin Roth09b64442016-06-05 10:52:43 -0600398 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
399 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
400 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
401 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
402 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
Patrick Georgi0588d192009-08-12 15:00:51 +0000403endif
404
Patrick Georgi40ad8422011-05-21 22:18:59 +0000405ifndef NOMKDIR
Stefan Reinauerde60c882015-06-29 14:44:37 -0700406$(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
Patrick Georgi40ad8422011-05-21 22:18:59 +0000407endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000408
Martin Roth9b0204d2017-09-18 09:25:18 -0600409$(obj)/project_filelist.txt:
410 if [ -z "$(wildcard $(obj)/coreboot.rom)" ]; then \
411 echo "*** Error: Project must be built before generating file list ***"; \
412 exit 1; \
413 fi
Martin Roth8a027272017-09-26 09:53:30 -0600414 find $(obj) -path "$(obj)/util" -prune -o -name "*.d" -exec cat {} \; | \
415 sed "s|$(top)/||" | sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
Martin Roth9c1b33e2015-07-29 14:55:18 -0700416 grep -v '\.o$$' > $(obj)/project_filelist.txt
417
Martin Roth9b0204d2017-09-18 09:25:18 -0600418filelist: $(obj)/project_filelist.txt
Martin Rotha18353d2017-06-06 06:44:46 -0600419 printf "\nFiles used in build:\n"
420 cat $(obj)/project_filelist.txt
421
Martin Roth9c1b33e2015-07-29 14:55:18 -0700422#works with either exuberant ctags or ctags.emacs
423ctags-project: clean-ctags $(obj)/project_filelist.txt
424 cat $(obj)/project_filelist.txt | \
425 xargs ctags -o tags
426
427cscope-project: clean-cscope $(obj)/project_filelist.txt
428 cat $(obj)/project_filelist.txt | xargs cscope -b
429
Warren Turkala9fc3302010-09-03 08:57:32 +0000430cscope:
431 cscope -bR
432
Patrick Georgi0588d192009-08-12 15:00:51 +0000433doxy: doxygen
434doxygen:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500435 $(DOXYGEN) Documentation/Doxyfile.coreboot
Patrick Georgi0588d192009-08-12 15:00:51 +0000436
Martin Rothd7689e42014-12-29 14:56:19 -0700437doxygen_simple:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500438 $(DOXYGEN) Documentation/Doxyfile.coreboot_simple
Martin Rothd7689e42014-12-29 14:56:19 -0700439
Martin Rothb1574e32016-07-07 15:50:28 -0600440doxyplatform doxygen_platform: $(obj)/project_filelist.txt
441 echo
442 echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)"
443 export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \
444 mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \
445 export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \
446 export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \
447 $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform
448
Patrick Georgi0588d192009-08-12 15:00:51 +0000449doxyclean: doxygen-clean
450doxygen-clean:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000451 rm -rf $(DOXYGEN_OUTPUT_DIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000452
Patrick Georgi71b84802011-02-22 14:35:05 +0000453clean-for-update: doxygen-clean clean-for-update-target
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100454 rm -rf $(obj) .xcompile
Patrick Georgi0588d192009-08-12 15:00:51 +0000455
Martin Roth20cd54f2017-03-26 18:49:02 -0600456clean: clean-for-update clean-target clean-utils
Patrick Georgi71b84802011-02-22 14:35:05 +0000457 rm -f .ccwrap
Warren Turkal0e8f2042010-09-27 21:14:19 +0000458
Warren Turkala9fc3302010-09-03 08:57:32 +0000459clean-cscope:
460 rm -f cscope.out
461
Martin Roth9c1b33e2015-07-29 14:55:18 -0700462clean-ctags:
463 rm -f tags
464
Martin Roth20cd54f2017-03-26 18:49:02 -0600465clean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600466 $(foreach tool, $(TOOLLIST), \
467 $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
Martin Roth20cd54f2017-03-26 18:49:02 -0600468
469distclean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600470 $(foreach tool, $(TOOLLIST), \
471 $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
Martin Roth20cd54f2017-03-26 18:49:02 -0600472 rm -f /util/$(tool)/junit.xml;)
473
474distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
Patrick Georgi80656af2017-04-26 11:58:44 +0200475 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
Martin Roth20cd54f2017-03-26 18:49:02 -0600476 rm -rf coreboot-builds coreboot-builds-chromeos
477 rm -f abuild*.xml junit.xml* util/lint/junit.xml
Patrick Georgi0588d192009-08-12 15:00:51 +0000478
Martin Rothd7689e42014-12-29 14:56:19 -0700479.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple
Martin Roth9c1b33e2015-07-29 14:55:18 -0700480.PHONY: ctags-project cscope-project clean-ctags