blob: 45b0bc5f8c2fa75fdca4c25196235b7cb01434eb [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
Nico Huber7a1fbdb2017-08-23 23:48:13 +020033top := $(CURDIR)
34src := src
35srck := $(top)/util/kconfig
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -070036obj ?= build
37override obj := $(subst $(top)/,,$(abspath $(obj)))
Nico Huber7a1fbdb2017-08-23 23:48:13 +020038objutil ?= $(obj)/util
39objk := $(objutil)/kconfig
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -070040absobj := $(abspath $(obj))
Patrick Georgi0588d192009-08-12 15:00:51 +000041
Nico Huber7a1fbdb2017-08-23 23:48:13 +020042COREBOOT_EXPORTS := COREBOOT_EXPORTS
43COREBOOT_EXPORTS += top src srck obj objutil objk
Patrick Georgi0588d192009-08-12 15:00:51 +000044
Nico Huber7a1fbdb2017-08-23 23:48:13 +020045DOTCONFIG ?= $(top)/.config
46KCONFIG_CONFIG = $(DOTCONFIG)
Nico Huber533bc0a2019-01-01 19:03:33 +010047KCONFIG_AUTOADS := $(obj)/cb-config.ads
Nico Huber7a1fbdb2017-08-23 23:48:13 +020048KCONFIG_AUTOHEADER := $(obj)/config.h
49KCONFIG_AUTOCONFIG := $(obj)/auto.conf
50KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd
51KCONFIG_SPLITCONFIG := $(obj)/config
52KCONFIG_TRISTATE := $(obj)/tristate.conf
53KCONFIG_NEGATIVES := 1
54KCONFIG_STRICT := 1
Nico Huber533bc0a2019-01-01 19:03:33 +010055KCONFIG_PACKAGE := CB.Config
Nico Huber7a1fbdb2017-08-23 23:48:13 +020056
57COREBOOT_EXPORTS += KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG
58COREBOOT_EXPORTS += KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE
59COREBOOT_EXPORTS += KCONFIG_NEGATIVES KCONFIG_STRICT
Nico Huber533bc0a2019-01-01 19:03:33 +010060COREBOOT_EXPORTS += KCONFIG_AUTOADS KCONFIG_PACKAGE
Patrick Georgi0588d192009-08-12 15:00:51 +000061
Patrick Georgie38d0a62011-03-01 08:09:22 +000062# directory containing the toplevel Makefile.inc
63TOPLEVEL := .
64
Patrick Georgi0588d192009-08-12 15:00:51 +000065CONFIG_SHELL := sh
66KBUILD_DEFCONFIG := configs/defconfig
67UNAME_RELEASE := $(shell uname -r)
Patrick Georgi89ec3762010-12-08 19:58:30 +000068HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
Patrick Georgi0588d192009-08-12 15:00:51 +000069MAKEFLAGS += -rR --no-print-directory
70
71# Make is silent per default, but 'make V=1' will show all compiler calls.
Patrick Georgi2b7418e2009-08-25 19:38:46 +000072Q:=@
Patrick Georgi0588d192009-08-12 15:00:51 +000073ifneq ($(V),1)
Patrick Georgi2b7418e2009-08-25 19:38:46 +000074ifneq ($(Q),)
75.SILENT:
76endif
Patrick Georgi0588d192009-08-12 15:00:51 +000077endif
78
Julius Werner808a4292015-03-13 11:05:07 -070079# Disable implicit/built-in rules to make Makefile errors fail fast.
80.SUFFIXES:
81
Patrick Georgif92068d2016-02-01 12:02:29 +010082HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc)
Patrick Georgi0588d192009-08-12 15:00:51 +000083HOSTCXX = g++
Patrick Georgib3a18ac2012-09-13 22:13:33 +020084HOSTCFLAGS := -g
85HOSTCXXFLAGS := -g
Patrick Georgi0588d192009-08-12 15:00:51 +000086
Patrick Georgi828e0e82015-04-04 15:50:20 +020087PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I .
88
Patrick Georgi0588d192009-08-12 15:00:51 +000089DOXYGEN := doxygen
90DOXYGEN_OUTPUT_DIR := doxygen
91
Nico Huber7a1fbdb2017-08-23 23:48:13 +020092export $(COREBOOT_EXPORTS)
93
Patrick Georgi71b84802011-02-22 14:35:05 +000094all: real-all
95
Martin Roth4eea1742015-11-25 11:50:04 -070096help_coreboot help::
97 @echo '*** coreboot platform targets ***'
Martin Roth76f14b22015-11-18 13:09:23 -070098 @echo ' Use "make [target] V=1" for extra build debug information'
99 @echo ' all - Build coreboot'
100 @echo ' clean - Remove coreboot build artifacts'
101 @echo ' distclean - Remove build artifacts and config files'
102 @echo ' doxygen - Build doxygen documentation for coreboot'
Martin Rothb1574e32016-07-07 15:50:28 -0600103 @echo ' doxyplatform - Build doxygen documentation for the current platform'
Martin Roth763e4932018-01-27 16:42:43 -0700104 @echo ' filelist - Show files used in current build'
Martin Roth76f14b22015-11-18 13:09:23 -0700105 @echo ' printall - print makefile info for debugging'
Werner Zeh2de64102016-01-12 12:45:49 +0100106 @echo ' gitconfig - set up git to submit patches to coreboot'
Martin Roth76f14b22015-11-18 13:09:23 -0700107 @echo ' ctags / ctags-project - make ctags file for all of coreboot or current board'
108 @echo ' cscope / cscope-project - make cscope.out file for coreboot or current board'
109 @echo
110
Patrick Georgie38d0a62011-03-01 08:09:22 +0000111# This include must come _before_ the pattern rules below!
Patrick Georgi71b84802011-02-22 14:35:05 +0000112# Order _does_ matter for pattern rules.
Stefan Reinauerde60c882015-06-29 14:44:37 -0700113include $(srck)/Makefile
Patrick Georgi71b84802011-02-22 14:35:05 +0000114
Patrick Georgicf036d12010-04-21 06:36:20 +0000115# Three cases where we don't need fully populated $(obj) lists:
116# 1. when no .config exists
117# 2. when make config (in any flavour) is run
118# 3. when make distclean is run
119# Don't waste time on reading all Makefile.incs in these cases
Patrick Georgi0588d192009-08-12 15:00:51 +0000120ifeq ($(strip $(HAVE_DOTCONFIG)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000121NOCOMPILE:=1
122endif
123ifneq ($(MAKECMDGOALS),)
Martin Roth109a7db2016-08-11 18:16:59 -0600124ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000125NOCOMPILE:=1
126endif
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100127ifeq ($(MAKECMDGOALS), %clean)
Zheng Bao0fd93d62012-10-22 16:36:03 +0800128NOMKDIR:=1
129endif
Patrick Georgicf036d12010-04-21 06:36:20 +0000130endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000131
Patrick Georgicf036d12010-04-21 06:36:20 +0000132ifeq ($(NOCOMPILE),1)
Patrick Georgie38d0a62011-03-01 08:09:22 +0000133include $(TOPLEVEL)/Makefile.inc
Martin Roth67975572016-03-07 16:38:52 -0700134include $(TOPLEVEL)/payloads/Makefile.inc
Martin Rothe624e272017-07-31 11:52:58 -0600135include $(TOPLEVEL)/util/testing/Makefile.inc
Naresh G Solanki57443692017-08-31 22:32:49 +0530136-include $(TOPLEVEL)/site-local/Makefile.inc
Martin Roth20aa0432017-01-26 10:51:43 -0700137real-all:
138 @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
139 @echo "Please specify a config file or run 'make menuconfig' to" >&2
140 @echo "generate a new config file." >&2
141 @exit 1
Patrick Georgi0588d192009-08-12 15:00:51 +0000142else
143
Paul Kocialkowski585c7812016-07-13 11:00:41 +0200144include $(DOTCONFIG)
Patrick Georgi0588d192009-08-12 15:00:51 +0000145
Patrick Georgi0ffef882017-01-19 23:20:14 +0100146# in addition to the dependency below, create the file if it doesn't exist
147# to silence stupid warnings about a file that would be generated anyway.
148$(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile)))
149
150.xcompile: util/xcompile/xcompile
151 rm -f $@
152 $< $(XGCCPATH) > $@.tmp
153 \mv -f $@.tmp $@ 2> /dev/null
154 rm -f $@.tmp
155
Patrick Georgi6dda31d2015-11-19 15:15:33 +0100156-include .xcompile
157
158ifneq ($(XCOMPILE_COMPLETE),1)
159$(shell rm -f .xcompile)
160$(error .xcompile deleted because it's invalid. \
161 Restarting the build should fix that, or explain the problem)
162endif
Patrick Georgi7b9762f2015-06-04 13:18:11 +0200163
Patrick Georgicc84a002014-05-14 21:05:35 +0200164ifneq ($(CONFIG_MMX),y)
165CFLAGS_x86_32 += -mno-mmx
166endif
167
Patrick Georgicc84a002014-05-14 21:05:35 +0200168include toolchain.inc
169
Zheng Bao07648922015-11-13 10:42:27 +0800170strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
Martin Rothbbf13992016-01-25 15:59:24 -0700171# fix makefile syntax highlighting after strip macro \" "))
Patrick Georgia84e98b2010-03-16 19:01:32 +0000172
Patrick Georgi0588d192009-08-12 15:00:51 +0000173# The primary target needs to be here before we include the
174# other files
175
Patrick Georgi71b84802011-02-22 14:35:05 +0000176real-all: real-target
Patrick Georgi0588d192009-08-12 15:00:51 +0000177
Patrick Georgi51e142f2010-03-27 17:18:39 +0000178# must come rather early
179.SECONDEXPANSION:
Raul E Rangelcc6dc902018-08-06 16:13:32 -0600180.DELETE_ON_ERROR:
Patrick Georgi51e142f2010-03-27 17:18:39 +0000181
Jonathan Neuschäferd2c02422018-12-11 13:06:40 +0100182$(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG) $(objutil)/kconfig/conf
Patrick Georgi78a5f222017-01-30 15:29:34 +0100183 +$(MAKE) oldconfig
Patrick Georgi0588d192009-08-12 15:00:51 +0000184
Nico Huber533bc0a2019-01-01 19:03:33 +0100185$(KCONFIG_AUTOCONFIG): $(KCONFIG_AUTOHEADER)
186 true
187
188$(KCONFIG_AUTOADS): $(KCONFIG_AUTOCONFIG) $(objutil)/kconfig/toada
189 $(objutil)/kconfig/toada CB.Config <$< >$@
190
Nico Huberb5679772019-01-01 22:06:01 +0100191$(obj)/%/$(notdir $(KCONFIG_AUTOADS)): $(KCONFIG_AUTOADS)
192 cp $< $@
193
Patrick Georgi58262652011-02-17 20:47:49 +0000194# Add a new class of source/object files to the build system
195add-class= \
196 $(eval $(1)-srcs:=) \
197 $(eval $(1)-objs:=) \
198 $(eval classes+=$(1))
Patrick Georgi8463dd92010-09-30 16:55:02 +0000199
Patrick Georgi58262652011-02-17 20:47:49 +0000200# Special classes are managed types with special behaviour
201# On parse time, for each entry in variable $(1)-y
202# a handler $(1)-handler is executed with the arguments:
203# * $(1): directory the parser is in
204# * $(2): current entry
205add-special-class= \
206 $(eval $(1):=) \
207 $(eval special-classes+=$(1))
208
Nico Huber81b09f42016-01-23 00:50:00 +0100209# Converts one or more source file paths to their corresponding build/ paths.
Nico Huber2e09d2b2016-01-14 01:13:33 +0100210# Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
211# their name.
Nico Huber81b09f42016-01-23 00:50:00 +0100212# $1 stage name
213# $2 file path (list)
Nico Huber98fc4262016-01-23 01:24:33 +0100214src-to-obj=\
215 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
216 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200217 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber98fc4262016-01-23 01:24:33 +0100218 $(patsubst src/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100219 $(patsubst %.ads,%.o,\
220 $(patsubst %.adb,%.o,\
Nico Huber98fc4262016-01-23 01:24:33 +0100221 $(patsubst %.c,%.o,\
222 $(patsubst %.S,%.o,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200223 $(subst .$(1),,$(2))))))))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100224
225# Converts one or more source file paths to the corresponding build/ paths
226# of their Ada library information (.ali) files.
227# $1 stage name
228# $2 file path (list)
229src-to-ali=\
230 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
231 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200232 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100233 $(patsubst src/%,$(obj)/%,\
234 $(patsubst %.ads,%.ali,\
235 $(patsubst %.adb,%.ali,\
236 $(subst .$(1),,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200237 $(filter %.ads %.adb,$(2)))))))))
Nico Huber81b09f42016-01-23 00:50:00 +0100238
Patrick Georgi47d68d82010-03-06 21:18:43 +0000239# Clean -y variables, include Makefile.inc
Patrick Georgi8463dd92010-09-30 16:55:02 +0000240# Add paths to files in X-y to X-srcs
Patrick Georgi47d68d82010-03-06 21:18:43 +0000241# Add subdirs-y to subdirs
242includemakefiles= \
Patrick Georgi58262652011-02-17 20:47:49 +0000243 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
Patrick Georgi47d68d82010-03-06 21:18:43 +0000244 $(eval -include $(1)) \
Patrick Georgi58262652011-02-17 20:47:49 +0000245 $(foreach class,$(classes-y), $(call add-class,$(class))) \
246 $(foreach class,$(classes), \
247 $(eval $(class)-srcs+= \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700248 $$(subst $(absobj)/,$(obj)/, \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000249 $$(subst $(top)/,, \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700250 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \
Patrick Georgi58262652011-02-17 20:47:49 +0000251 $(foreach special,$(special-classes), \
252 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
Patrick Georgi64b8fba2017-10-28 05:26:01 -0400253 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(wildcard $$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y))))))
Patrick Georgi47d68d82010-03-06 21:18:43 +0000254
Patrick Georgi8463dd92010-09-30 16:55:02 +0000255# For each path in $(subdirs) call includemakefiles
Patrick Georgi47d68d82010-03-06 21:18:43 +0000256# Repeat until subdirs is empty
257evaluate_subdirs= \
258 $(eval cursubdirs:=$(subdirs)) \
259 $(eval subdirs:=) \
260 $(foreach dir,$(cursubdirs), \
Patrick Georgi58262652011-02-17 20:47:49 +0000261 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000262 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000263
264# collect all object files eligible for building
Patrick Georgie38d0a62011-03-01 08:09:22 +0000265subdirs:=$(TOPLEVEL)
Julius Wernere91d1702017-03-20 15:32:15 -0700266postinclude-hooks :=
Patrick Georgi51e142f2010-03-27 17:18:39 +0000267$(eval $(call evaluate_subdirs))
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100268ifeq ($(FAILBUILD),1)
269$(error cannot continue build)
270endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000271
Julius Wernere91d1702017-03-20 15:32:15 -0700272# Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
273$(eval $(postinclude-hooks))
274
Patrick Georgi94a45862011-10-25 14:32:21 -0700275# Eliminate duplicate mentions of source files in a class
276$(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
277
Nico Huberb5679772019-01-01 22:06:01 +0100278# Build Kconfig .ads if necessary
279ifeq ($(CONFIG_RAMSTAGE_ADA),y)
280ramstage-srcs += $(obj)/ramstage/$(notdir $(KCONFIG_AUTOADS))
281endif
282
Nico Huber2e09d2b2016-01-14 01:13:33 +0100283# To track dependencies, we need all Ada specification (.ads) files in
284# *-srcs. Extract / filter all specification files that have a matching
285# body (.adb) file here (specifications without a body are valid sources
286# in Ada).
287$(foreach class,$(classes),$(eval $(class)-extra-specs := \
288 $(filter \
289 $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \
290 $(filter %.ads,$($(class)-srcs)))))
291$(foreach class,$(classes),$(eval $(class)-srcs := \
292 $(filter-out $($(class)-extra-specs),$($(class)-srcs))))
293
Patrick Georgi10f86b02015-03-27 16:56:23 +0100294$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100295$(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs))))
296
297# For Ada includes
298$(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs)))))
Patrick Georgid3428b02010-02-24 13:18:01 +0000299
Nico Huber963bed52013-05-15 11:47:51 +0200300# Save all objs before processing them (for dependency inclusion)
301originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
302
Patrick Georgi79f90102012-11-25 14:31:08 +0100303# Call post-processors if they're defined
304$(foreach class,$(classes),\
305 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
306
Patrick Georgi58262652011-02-17 20:47:49 +0000307allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
308allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000309alldirs:=$(sort $(abspath $(dir $(allobjs))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000310
Nico Huber2e09d2b2016-01-14 01:13:33 +0100311# Reads dependencies from an Ada library information (.ali) file
312# Only basenames (with suffix) are preserved so we have to look the
313# paths up in $($(stage)-srcs).
314# $1 stage name
315# $2 ali file
316create_ada_deps=$$(if $(2),\
317 gnat.adc \
318 $$(filter \
319 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
320 $$($(1)-srcs) $$($(1)-extra-specs)))
321
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000322# macro to define template macros that are used by use_template macro
323define create_cc_template
Patrick Georgi71b84802011-02-22 14:35:05 +0000324# $1 obj class
Patrick Georgi990e7c92015-04-03 10:47:15 +0200325# $2 source suffix (c, S, ld, ...)
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700326# $3 additional compiler flags
327# $4 additional dependencies
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000328ifn$(EMPTY)def $(1)-objs_$(2)_template
Patrick Georgi8463dd92010-09-30 16:55:02 +0000329de$(EMPTY)fine $(1)-objs_$(2)_template
Nico Huber1850aa62017-09-03 23:42:58 +0200330ifn$(EMPTY)eq ($(filter ads adb,$(2)),)
Nico Huberb5679772019-01-01 22:06:01 +0100331$$(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 +0200332 @printf " GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
333 $(GCC_$(1)) \
334 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs)) \
335 $(3) -c -o $$$$@ $$$$<
336el$(EMPTY)se
337$$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $(KCONFIG_AUTOHEADER) $(4)
Patrick Georgi1cd76e72010-04-19 20:39:22 +0000338 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
Nico Huber2e09d2b2016-01-14 01:13:33 +0100339 $(CC_$(1)) \
Nico Huber1850aa62017-09-03 23:42:58 +0200340 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@) \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100341 $(3) -c -o $$$$@ $$$$<
Nico Huber1850aa62017-09-03 23:42:58 +0200342end$(EMPTY)if
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000343en$(EMPTY)def
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000344end$(EMPTY)if
Patrick Georgi0588d192009-08-12 15:00:51 +0000345endef
346
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000347filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
348$(foreach class,$(classes), \
349 $(foreach type,$(call filetypes-of-class,$(class)), \
Patrick Georgi2459aee2015-03-27 15:27:21 +0100350 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
Patrick Georgi416ab382015-04-03 10:19:38 +0200351 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
352 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000353
Patrick Georgid69839b2015-04-03 10:32:17 +0200354foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
Patrick Georgi58262652011-02-17 20:47:49 +0000355$(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000356
Nico Huber2e09d2b2016-01-14 01:13:33 +0100357# To supported complex package initializations, we need to call the
358# emitted code explicitly. gnatbind gathers all the calls for us
359# and exports them as a procedure $(stage)_adainit(). Every stage that
360# uses Ada code has to call it!
361define gnatbind_template
362# $1 class
363$$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
364 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
365 # We have to give gnatbind a simple filename (without leading
366 # path components) so just cd there.
367 cd $$(dir $$@) && \
368 $$(GNATBIND_$(1)) -a -n \
Nico Huberbe5492a2015-09-29 16:41:19 +0200369 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100370 -L$(1)_ada -o $$(notdir $$@) \
371 $$(subst $$(dir $$@),,$$^)
372$$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
Nico Huber1850aa62017-09-03 23:42:58 +0200373 @printf " GCC $$(subst $$(obj)/,,$$@)\n"
374 $(GCC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
Nico Huber2e09d2b2016-01-14 01:13:33 +0100375$(1)-objs += $$(obj)/$(1)/b__$(1).o
Nico Huberddb24652016-09-19 11:50:04 +0200376$($(1)-alis): %.ali: %.o ;
Nico Huber2e09d2b2016-01-14 01:13:33 +0100377endef
378
Nico Huberbe5492a2015-09-29 16:41:19 +0200379$(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100380 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
381
Julius Wernerf97b88b2014-12-05 12:32:09 -0800382DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
Stefan Reinauer6bee9512010-03-24 15:51:48 +0000383-include $(DEPENDENCIES)
384
Patrick Georgi0588d192009-08-12 15:00:51 +0000385printall:
Martin Roth09b64442016-06-05 10:52:43 -0600386 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
387 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
388 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
389 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
390 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
Patrick Georgi0588d192009-08-12 15:00:51 +0000391endif
392
Patrick Georgi40ad8422011-05-21 22:18:59 +0000393ifndef NOMKDIR
Stefan Reinauerde60c882015-06-29 14:44:37 -0700394$(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
Patrick Georgi40ad8422011-05-21 22:18:59 +0000395endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000396
Martin Roth9b0204d2017-09-18 09:25:18 -0600397$(obj)/project_filelist.txt:
398 if [ -z "$(wildcard $(obj)/coreboot.rom)" ]; then \
399 echo "*** Error: Project must be built before generating file list ***"; \
400 exit 1; \
401 fi
Martin Roth8a027272017-09-26 09:53:30 -0600402 find $(obj) -path "$(obj)/util" -prune -o -name "*.d" -exec cat {} \; | \
403 sed "s|$(top)/||" | sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
Martin Roth9c1b33e2015-07-29 14:55:18 -0700404 grep -v '\.o$$' > $(obj)/project_filelist.txt
405
Martin Roth9b0204d2017-09-18 09:25:18 -0600406filelist: $(obj)/project_filelist.txt
Martin Rotha18353d2017-06-06 06:44:46 -0600407 printf "\nFiles used in build:\n"
408 cat $(obj)/project_filelist.txt
409
Martin Roth9c1b33e2015-07-29 14:55:18 -0700410#works with either exuberant ctags or ctags.emacs
411ctags-project: clean-ctags $(obj)/project_filelist.txt
412 cat $(obj)/project_filelist.txt | \
413 xargs ctags -o tags
414
415cscope-project: clean-cscope $(obj)/project_filelist.txt
416 cat $(obj)/project_filelist.txt | xargs cscope -b
417
Warren Turkala9fc3302010-09-03 08:57:32 +0000418cscope:
419 cscope -bR
420
Patrick Georgi0588d192009-08-12 15:00:51 +0000421doxy: doxygen
422doxygen:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500423 $(DOXYGEN) Documentation/Doxyfile.coreboot
Patrick Georgi0588d192009-08-12 15:00:51 +0000424
Martin Rothd7689e42014-12-29 14:56:19 -0700425doxygen_simple:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500426 $(DOXYGEN) Documentation/Doxyfile.coreboot_simple
Martin Rothd7689e42014-12-29 14:56:19 -0700427
Martin Rothb1574e32016-07-07 15:50:28 -0600428doxyplatform doxygen_platform: $(obj)/project_filelist.txt
429 echo
430 echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)"
431 export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \
432 mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \
433 export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \
434 export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \
435 $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform
436
Patrick Georgi0588d192009-08-12 15:00:51 +0000437doxyclean: doxygen-clean
438doxygen-clean:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000439 rm -rf $(DOXYGEN_OUTPUT_DIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000440
Patrick Georgi71b84802011-02-22 14:35:05 +0000441clean-for-update: doxygen-clean clean-for-update-target
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100442 rm -rf $(obj) .xcompile
Patrick Georgi0588d192009-08-12 15:00:51 +0000443
Martin Roth20cd54f2017-03-26 18:49:02 -0600444clean: clean-for-update clean-target clean-utils
Patrick Georgi71b84802011-02-22 14:35:05 +0000445 rm -f .ccwrap
Warren Turkal0e8f2042010-09-27 21:14:19 +0000446
Warren Turkala9fc3302010-09-03 08:57:32 +0000447clean-cscope:
448 rm -f cscope.out
449
Martin Roth9c1b33e2015-07-29 14:55:18 -0700450clean-ctags:
451 rm -f tags
452
Martin Roth20cd54f2017-03-26 18:49:02 -0600453clean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600454 $(foreach tool, $(TOOLLIST), \
455 $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
Martin Roth20cd54f2017-03-26 18:49:02 -0600456
457distclean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600458 $(foreach tool, $(TOOLLIST), \
459 $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
Martin Roth20cd54f2017-03-26 18:49:02 -0600460 rm -f /util/$(tool)/junit.xml;)
461
462distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
Patrick Georgi80656af2017-04-26 11:58:44 +0200463 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
Martin Roth20cd54f2017-03-26 18:49:02 -0600464 rm -rf coreboot-builds coreboot-builds-chromeos
465 rm -f abuild*.xml junit.xml* util/lint/junit.xml
Patrick Georgi0588d192009-08-12 15:00:51 +0000466
Martin Rothd7689e42014-12-29 14:56:19 -0700467.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple
Martin Roth9c1b33e2015-07-29 14:55:18 -0700468.PHONY: ctags-project cscope-project clean-ctags