blob: 4d763403c31755ec72b5859ecf4488e7401c57c8 [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)
47KCONFIG_AUTOHEADER := $(obj)/config.h
48KCONFIG_AUTOCONFIG := $(obj)/auto.conf
49KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd
50KCONFIG_SPLITCONFIG := $(obj)/config
51KCONFIG_TRISTATE := $(obj)/tristate.conf
52KCONFIG_NEGATIVES := 1
53KCONFIG_STRICT := 1
54
55COREBOOT_EXPORTS += KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG
56COREBOOT_EXPORTS += KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE
57COREBOOT_EXPORTS += KCONFIG_NEGATIVES KCONFIG_STRICT
Patrick Georgi0588d192009-08-12 15:00:51 +000058
Patrick Georgie38d0a62011-03-01 08:09:22 +000059# directory containing the toplevel Makefile.inc
60TOPLEVEL := .
61
Patrick Georgi0588d192009-08-12 15:00:51 +000062CONFIG_SHELL := sh
63KBUILD_DEFCONFIG := configs/defconfig
64UNAME_RELEASE := $(shell uname -r)
Patrick Georgi89ec3762010-12-08 19:58:30 +000065HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
Patrick Georgi0588d192009-08-12 15:00:51 +000066MAKEFLAGS += -rR --no-print-directory
67
68# Make is silent per default, but 'make V=1' will show all compiler calls.
Patrick Georgi2b7418e2009-08-25 19:38:46 +000069Q:=@
Patrick Georgi0588d192009-08-12 15:00:51 +000070ifneq ($(V),1)
Patrick Georgi2b7418e2009-08-25 19:38:46 +000071ifneq ($(Q),)
72.SILENT:
73endif
Patrick Georgi0588d192009-08-12 15:00:51 +000074endif
75
Julius Werner808a4292015-03-13 11:05:07 -070076# Disable implicit/built-in rules to make Makefile errors fail fast.
77.SUFFIXES:
78
Patrick Georgif92068d2016-02-01 12:02:29 +010079HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc)
Patrick Georgi0588d192009-08-12 15:00:51 +000080HOSTCXX = g++
Patrick Georgib3a18ac2012-09-13 22:13:33 +020081HOSTCFLAGS := -g
82HOSTCXXFLAGS := -g
Patrick Georgi0588d192009-08-12 15:00:51 +000083
Patrick Georgi828e0e82015-04-04 15:50:20 +020084PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I .
85
Patrick Georgi0588d192009-08-12 15:00:51 +000086DOXYGEN := doxygen
87DOXYGEN_OUTPUT_DIR := doxygen
88
Nico Huber7a1fbdb2017-08-23 23:48:13 +020089export $(COREBOOT_EXPORTS)
90
Patrick Georgi71b84802011-02-22 14:35:05 +000091all: real-all
92
Martin Roth4eea1742015-11-25 11:50:04 -070093help_coreboot help::
94 @echo '*** coreboot platform targets ***'
Martin Roth76f14b22015-11-18 13:09:23 -070095 @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 Rothb1574e32016-07-07 15:50:28 -0600100 @echo ' doxyplatform - Build doxygen documentation for the current platform'
Martin Roth76f14b22015-11-18 13:09:23 -0700101 @echo ' printall - print makefile info for debugging'
Werner Zeh2de64102016-01-12 12:45:49 +0100102 @echo ' gitconfig - set up git to submit patches to coreboot'
Martin Roth76f14b22015-11-18 13:09:23 -0700103 @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 Georgie38d0a62011-03-01 08:09:22 +0000107# This include must come _before_ the pattern rules below!
Patrick Georgi71b84802011-02-22 14:35:05 +0000108# Order _does_ matter for pattern rules.
Stefan Reinauerde60c882015-06-29 14:44:37 -0700109include $(srck)/Makefile
Patrick Georgi71b84802011-02-22 14:35:05 +0000110
Patrick Georgicf036d12010-04-21 06:36:20 +0000111# 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 Georgi0588d192009-08-12 15:00:51 +0000116ifeq ($(strip $(HAVE_DOTCONFIG)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000117NOCOMPILE:=1
118endif
119ifneq ($(MAKECMDGOALS),)
Martin Roth109a7db2016-08-11 18:16:59 -0600120ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000121NOCOMPILE:=1
122endif
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100123ifeq ($(MAKECMDGOALS), %clean)
Zheng Bao0fd93d62012-10-22 16:36:03 +0800124NOMKDIR:=1
125endif
Patrick Georgicf036d12010-04-21 06:36:20 +0000126endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000127
Patrick Georgicf036d12010-04-21 06:36:20 +0000128ifeq ($(NOCOMPILE),1)
Patrick Georgie38d0a62011-03-01 08:09:22 +0000129include $(TOPLEVEL)/Makefile.inc
Martin Roth67975572016-03-07 16:38:52 -0700130include $(TOPLEVEL)/payloads/Makefile.inc
Martin Rothe624e272017-07-31 11:52:58 -0600131include $(TOPLEVEL)/util/testing/Makefile.inc
Martin Roth20aa0432017-01-26 10:51:43 -0700132real-all:
133 @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
134 @echo "Please specify a config file or run 'make menuconfig' to" >&2
135 @echo "generate a new config file." >&2
136 @exit 1
Patrick Georgi0588d192009-08-12 15:00:51 +0000137else
138
Paul Kocialkowski585c7812016-07-13 11:00:41 +0200139include $(DOTCONFIG)
Patrick Georgi0588d192009-08-12 15:00:51 +0000140
Patrick Georgi0ffef882017-01-19 23:20:14 +0100141# in addition to the dependency below, create the file if it doesn't exist
142# to silence stupid warnings about a file that would be generated anyway.
143$(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile)))
144
145.xcompile: util/xcompile/xcompile
146 rm -f $@
147 $< $(XGCCPATH) > $@.tmp
148 \mv -f $@.tmp $@ 2> /dev/null
149 rm -f $@.tmp
150
Patrick Georgi6dda31d2015-11-19 15:15:33 +0100151-include .xcompile
152
153ifneq ($(XCOMPILE_COMPLETE),1)
154$(shell rm -f .xcompile)
155$(error .xcompile deleted because it's invalid. \
156 Restarting the build should fix that, or explain the problem)
157endif
Patrick Georgi7b9762f2015-06-04 13:18:11 +0200158
Patrick Georgicc84a002014-05-14 21:05:35 +0200159ifneq ($(CONFIG_MMX),y)
160CFLAGS_x86_32 += -mno-mmx
161endif
162
Patrick Georgicc84a002014-05-14 21:05:35 +0200163include toolchain.inc
164
Zheng Bao07648922015-11-13 10:42:27 +0800165strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
Martin Rothbbf13992016-01-25 15:59:24 -0700166# fix makefile syntax highlighting after strip macro \" "))
Patrick Georgia84e98b2010-03-16 19:01:32 +0000167
Patrick Georgi0588d192009-08-12 15:00:51 +0000168# The primary target needs to be here before we include the
169# other files
170
Patrick Georgi71b84802011-02-22 14:35:05 +0000171real-all: real-target
Patrick Georgi0588d192009-08-12 15:00:51 +0000172
Patrick Georgi51e142f2010-03-27 17:18:39 +0000173# must come rather early
174.SECONDEXPANSION:
175
Stefan Reinauer0d869ed2015-07-17 13:31:16 -0700176$(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG)
Patrick Georgi78a5f222017-01-30 15:29:34 +0100177 +$(MAKE) oldconfig
Patrick Georgi0588d192009-08-12 15:00:51 +0000178
Patrick Georgi58262652011-02-17 20:47:49 +0000179# Add a new class of source/object files to the build system
180add-class= \
181 $(eval $(1)-srcs:=) \
182 $(eval $(1)-objs:=) \
183 $(eval classes+=$(1))
Patrick Georgi8463dd92010-09-30 16:55:02 +0000184
Patrick Georgi58262652011-02-17 20:47:49 +0000185# Special classes are managed types with special behaviour
186# On parse time, for each entry in variable $(1)-y
187# a handler $(1)-handler is executed with the arguments:
188# * $(1): directory the parser is in
189# * $(2): current entry
190add-special-class= \
191 $(eval $(1):=) \
192 $(eval special-classes+=$(1))
193
Nico Huber81b09f42016-01-23 00:50:00 +0100194# Converts one or more source file paths to their corresponding build/ paths.
Nico Huber2e09d2b2016-01-14 01:13:33 +0100195# Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
196# their name.
Nico Huber81b09f42016-01-23 00:50:00 +0100197# $1 stage name
198# $2 file path (list)
Nico Huber98fc4262016-01-23 01:24:33 +0100199src-to-obj=\
200 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
201 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200202 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber98fc4262016-01-23 01:24:33 +0100203 $(patsubst src/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100204 $(patsubst %.ads,%.o,\
205 $(patsubst %.adb,%.o,\
Nico Huber98fc4262016-01-23 01:24:33 +0100206 $(patsubst %.c,%.o,\
207 $(patsubst %.S,%.o,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200208 $(subst .$(1),,$(2))))))))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100209
210# Converts one or more source file paths to the corresponding build/ paths
211# of their Ada library information (.ali) files.
212# $1 stage name
213# $2 file path (list)
214src-to-ali=\
215 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
216 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200217 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100218 $(patsubst src/%,$(obj)/%,\
219 $(patsubst %.ads,%.ali,\
220 $(patsubst %.adb,%.ali,\
221 $(subst .$(1),,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200222 $(filter %.ads %.adb,$(2)))))))))
Nico Huber81b09f42016-01-23 00:50:00 +0100223
Patrick Georgi47d68d82010-03-06 21:18:43 +0000224# Clean -y variables, include Makefile.inc
Patrick Georgi8463dd92010-09-30 16:55:02 +0000225# Add paths to files in X-y to X-srcs
Patrick Georgi47d68d82010-03-06 21:18:43 +0000226# Add subdirs-y to subdirs
227includemakefiles= \
Patrick Georgi58262652011-02-17 20:47:49 +0000228 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
Patrick Georgi47d68d82010-03-06 21:18:43 +0000229 $(eval -include $(1)) \
Patrick Georgi58262652011-02-17 20:47:49 +0000230 $(foreach class,$(classes-y), $(call add-class,$(class))) \
231 $(foreach class,$(classes), \
232 $(eval $(class)-srcs+= \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700233 $$(subst $(absobj)/,$(obj)/, \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000234 $$(subst $(top)/,, \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700235 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \
Patrick Georgi58262652011-02-17 20:47:49 +0000236 $(foreach special,$(special-classes), \
237 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
Jonathan Kollasch7ff5b442010-09-28 21:11:48 +0000238 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
Patrick Georgi47d68d82010-03-06 21:18:43 +0000239
Patrick Georgi8463dd92010-09-30 16:55:02 +0000240# For each path in $(subdirs) call includemakefiles
Patrick Georgi47d68d82010-03-06 21:18:43 +0000241# Repeat until subdirs is empty
242evaluate_subdirs= \
243 $(eval cursubdirs:=$(subdirs)) \
244 $(eval subdirs:=) \
245 $(foreach dir,$(cursubdirs), \
Patrick Georgi58262652011-02-17 20:47:49 +0000246 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000247 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000248
249# collect all object files eligible for building
Patrick Georgie38d0a62011-03-01 08:09:22 +0000250subdirs:=$(TOPLEVEL)
Julius Wernere91d1702017-03-20 15:32:15 -0700251postinclude-hooks :=
Patrick Georgi51e142f2010-03-27 17:18:39 +0000252$(eval $(call evaluate_subdirs))
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100253ifeq ($(FAILBUILD),1)
254$(error cannot continue build)
255endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000256
Julius Wernere91d1702017-03-20 15:32:15 -0700257# Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
258$(eval $(postinclude-hooks))
259
Patrick Georgi94a45862011-10-25 14:32:21 -0700260# Eliminate duplicate mentions of source files in a class
261$(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
262
Nico Huber2e09d2b2016-01-14 01:13:33 +0100263# To track dependencies, we need all Ada specification (.ads) files in
264# *-srcs. Extract / filter all specification files that have a matching
265# body (.adb) file here (specifications without a body are valid sources
266# in Ada).
267$(foreach class,$(classes),$(eval $(class)-extra-specs := \
268 $(filter \
269 $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \
270 $(filter %.ads,$($(class)-srcs)))))
271$(foreach class,$(classes),$(eval $(class)-srcs := \
272 $(filter-out $($(class)-extra-specs),$($(class)-srcs))))
273
Patrick Georgi10f86b02015-03-27 16:56:23 +0100274$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100275$(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs))))
276
277# For Ada includes
278$(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs)))))
Patrick Georgid3428b02010-02-24 13:18:01 +0000279
Nico Huber963bed52013-05-15 11:47:51 +0200280# Save all objs before processing them (for dependency inclusion)
281originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
282
Patrick Georgi79f90102012-11-25 14:31:08 +0100283# Call post-processors if they're defined
284$(foreach class,$(classes),\
285 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
286
Patrick Georgi58262652011-02-17 20:47:49 +0000287allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
288allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000289alldirs:=$(sort $(abspath $(dir $(allobjs))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000290
Nico Huber2e09d2b2016-01-14 01:13:33 +0100291# Reads dependencies from an Ada library information (.ali) file
292# Only basenames (with suffix) are preserved so we have to look the
293# paths up in $($(stage)-srcs).
294# $1 stage name
295# $2 ali file
296create_ada_deps=$$(if $(2),\
297 gnat.adc \
298 $$(filter \
299 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
300 $$($(1)-srcs) $$($(1)-extra-specs)))
301
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000302# macro to define template macros that are used by use_template macro
303define create_cc_template
Patrick Georgi71b84802011-02-22 14:35:05 +0000304# $1 obj class
Patrick Georgi990e7c92015-04-03 10:47:15 +0200305# $2 source suffix (c, S, ld, ...)
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700306# $3 additional compiler flags
307# $4 additional dependencies
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000308ifn$(EMPTY)def $(1)-objs_$(2)_template
Patrick Georgi8463dd92010-09-30 16:55:02 +0000309de$(EMPTY)fine $(1)-objs_$(2)_template
Nico Huber2e09d2b2016-01-14 01:13:33 +0100310$$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $$(call create_ada_deps,$1,$$(call src-to-ali,$1,$$(1).$2)) $(KCONFIG_AUTOHEADER) $(4)
Patrick Georgi1cd76e72010-04-19 20:39:22 +0000311 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
Nico Huber2e09d2b2016-01-14 01:13:33 +0100312 $(CC_$(1)) \
313 $$(if $$(filter-out ads adb,$(2)), \
314 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@), \
315 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs))) \
316 $(3) -c -o $$$$@ $$$$<
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000317en$(EMPTY)def
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000318end$(EMPTY)if
Patrick Georgi0588d192009-08-12 15:00:51 +0000319endef
320
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000321filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
322$(foreach class,$(classes), \
323 $(foreach type,$(call filetypes-of-class,$(class)), \
Patrick Georgi2459aee2015-03-27 15:27:21 +0100324 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
Patrick Georgi416ab382015-04-03 10:19:38 +0200325 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
326 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000327
Patrick Georgid69839b2015-04-03 10:32:17 +0200328foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
Patrick Georgi58262652011-02-17 20:47:49 +0000329$(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000330
Nico Huber2e09d2b2016-01-14 01:13:33 +0100331# To supported complex package initializations, we need to call the
332# emitted code explicitly. gnatbind gathers all the calls for us
333# and exports them as a procedure $(stage)_adainit(). Every stage that
334# uses Ada code has to call it!
335define gnatbind_template
336# $1 class
337$$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
338 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
339 # We have to give gnatbind a simple filename (without leading
340 # path components) so just cd there.
341 cd $$(dir $$@) && \
342 $$(GNATBIND_$(1)) -a -n \
Nico Huberbe5492a2015-09-29 16:41:19 +0200343 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100344 -L$(1)_ada -o $$(notdir $$@) \
345 $$(subst $$(dir $$@),,$$^)
346$$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
347 @printf " CC $$(subst $$(obj)/,,$$@)\n"
348 $(CC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
349$(1)-objs += $$(obj)/$(1)/b__$(1).o
Nico Huberddb24652016-09-19 11:50:04 +0200350$($(1)-alis): %.ali: %.o ;
Nico Huber2e09d2b2016-01-14 01:13:33 +0100351endef
352
Nico Huberbe5492a2015-09-29 16:41:19 +0200353$(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100354 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
355
Julius Wernerf97b88b2014-12-05 12:32:09 -0800356DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
Stefan Reinauer6bee9512010-03-24 15:51:48 +0000357-include $(DEPENDENCIES)
358
Patrick Georgi0588d192009-08-12 15:00:51 +0000359printall:
Martin Roth09b64442016-06-05 10:52:43 -0600360 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
361 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
362 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
363 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
364 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
Patrick Georgi0588d192009-08-12 15:00:51 +0000365endif
366
Patrick Georgi40ad8422011-05-21 22:18:59 +0000367ifndef NOMKDIR
Stefan Reinauerde60c882015-06-29 14:44:37 -0700368$(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
Patrick Georgi40ad8422011-05-21 22:18:59 +0000369endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000370
Martin Roth9c1b33e2015-07-29 14:55:18 -0700371$(obj)/project_filelist.txt: all
372 find $(obj) -name "*.d" -exec cat {} \; | \
373 sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
374 grep -v '\.o$$' > $(obj)/project_filelist.txt
375
Martin Rotha18353d2017-06-06 06:44:46 -0600376filelist: clean
377 $(MAKE) $(obj)/project_filelist.txt
378 printf "\nFiles used in build:\n"
379 cat $(obj)/project_filelist.txt
380
Martin Roth9c1b33e2015-07-29 14:55:18 -0700381#works with either exuberant ctags or ctags.emacs
382ctags-project: clean-ctags $(obj)/project_filelist.txt
383 cat $(obj)/project_filelist.txt | \
384 xargs ctags -o tags
385
386cscope-project: clean-cscope $(obj)/project_filelist.txt
387 cat $(obj)/project_filelist.txt | xargs cscope -b
388
Warren Turkala9fc3302010-09-03 08:57:32 +0000389cscope:
390 cscope -bR
391
Patrick Georgi0588d192009-08-12 15:00:51 +0000392doxy: doxygen
393doxygen:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500394 $(DOXYGEN) Documentation/Doxyfile.coreboot
Patrick Georgi0588d192009-08-12 15:00:51 +0000395
Martin Rothd7689e42014-12-29 14:56:19 -0700396doxygen_simple:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500397 $(DOXYGEN) Documentation/Doxyfile.coreboot_simple
Martin Rothd7689e42014-12-29 14:56:19 -0700398
Martin Rothb1574e32016-07-07 15:50:28 -0600399doxyplatform doxygen_platform: $(obj)/project_filelist.txt
400 echo
401 echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)"
402 export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \
403 mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \
404 export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \
405 export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \
406 $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform
407
Patrick Georgi0588d192009-08-12 15:00:51 +0000408doxyclean: doxygen-clean
409doxygen-clean:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000410 rm -rf $(DOXYGEN_OUTPUT_DIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000411
Patrick Georgi71b84802011-02-22 14:35:05 +0000412clean-for-update: doxygen-clean clean-for-update-target
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100413 rm -rf $(obj) .xcompile
Patrick Georgi0588d192009-08-12 15:00:51 +0000414
Martin Roth20cd54f2017-03-26 18:49:02 -0600415clean: clean-for-update clean-target clean-utils
Patrick Georgi71b84802011-02-22 14:35:05 +0000416 rm -f .ccwrap
Warren Turkal0e8f2042010-09-27 21:14:19 +0000417
Warren Turkala9fc3302010-09-03 08:57:32 +0000418clean-cscope:
419 rm -f cscope.out
420
Martin Roth9c1b33e2015-07-29 14:55:18 -0700421clean-ctags:
422 rm -f tags
423
Martin Roth20cd54f2017-03-26 18:49:02 -0600424clean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600425 $(foreach tool, $(TOOLLIST), \
426 $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
Martin Roth20cd54f2017-03-26 18:49:02 -0600427
428distclean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600429 $(foreach tool, $(TOOLLIST), \
430 $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
Martin Roth20cd54f2017-03-26 18:49:02 -0600431 rm -f /util/$(tool)/junit.xml;)
432
433distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
Patrick Georgi80656af2017-04-26 11:58:44 +0200434 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
Martin Roth20cd54f2017-03-26 18:49:02 -0600435 rm -rf coreboot-builds coreboot-builds-chromeos
436 rm -f abuild*.xml junit.xml* util/lint/junit.xml
Patrick Georgi0588d192009-08-12 15:00:51 +0000437
Martin Rothd7689e42014-12-29 14:56:19 -0700438.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple
Martin Roth9c1b33e2015-07-29 14:55:18 -0700439.PHONY: ctags-project cscope-project clean-ctags