blob: b711a4d9af2f835ddd04b0fff89499a8d3f3a0cb [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
Jonathan Kollasch7ff5b442010-09-28 21:11:48 +000033export top := $(CURDIR)
Patrick Georgi51e142f2010-03-27 17:18:39 +000034export src := src
Patrick Georgi0588d192009-08-12 15:00:51 +000035export srck := $(top)/util/kconfig
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -070036obj ?= build
37override obj := $(subst $(top)/,,$(abspath $(obj)))
38export obj
Patrick Georgia2acbc72010-04-16 22:48:57 +000039export objutil ?= $(obj)/util
40export objk := $(objutil)/kconfig
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -070041absobj := $(abspath $(obj))
Patrick Georgi0588d192009-08-12 15:00:51 +000042
43
Patrick Georgi0588d192009-08-12 15:00:51 +000044export KCONFIG_AUTOHEADER := $(obj)/config.h
45export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
Patrick Georgid5208402014-04-11 20:24:06 +020046export KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd
47export KCONFIG_SPLITCONFIG := $(obj)/config
48export KCONFIG_TRISTATE := $(obj)/tristate.conf
49export KCONFIG_NEGATIVES := 1
Stefan Reinauerd373a002015-07-17 17:29:19 -070050export KCONFIG_STRICT := 1
Patrick Georgi0588d192009-08-12 15:00:51 +000051
Patrick Georgie38d0a62011-03-01 08:09:22 +000052# directory containing the toplevel Makefile.inc
53TOPLEVEL := .
54
Patrick Georgi0588d192009-08-12 15:00:51 +000055CONFIG_SHELL := sh
56KBUILD_DEFCONFIG := configs/defconfig
57UNAME_RELEASE := $(shell uname -r)
Paul Kocialkowskifde32752016-07-24 12:25:07 +020058DOTCONFIG ?= $(top)/.config
Patrick Georgi89ec3762010-12-08 19:58:30 +000059KCONFIG_CONFIG = $(DOTCONFIG)
60export KCONFIG_CONFIG
61HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
Patrick Georgi0588d192009-08-12 15:00:51 +000062MAKEFLAGS += -rR --no-print-directory
63
64# Make is silent per default, but 'make V=1' will show all compiler calls.
Patrick Georgi2b7418e2009-08-25 19:38:46 +000065Q:=@
Patrick Georgi0588d192009-08-12 15:00:51 +000066ifneq ($(V),1)
Patrick Georgi2b7418e2009-08-25 19:38:46 +000067ifneq ($(Q),)
68.SILENT:
69endif
Patrick Georgi0588d192009-08-12 15:00:51 +000070endif
71
Julius Werner808a4292015-03-13 11:05:07 -070072# Disable implicit/built-in rules to make Makefile errors fail fast.
73.SUFFIXES:
74
Patrick Georgif92068d2016-02-01 12:02:29 +010075HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc)
Patrick Georgi0588d192009-08-12 15:00:51 +000076HOSTCXX = g++
Patrick Georgib3a18ac2012-09-13 22:13:33 +020077HOSTCFLAGS := -g
78HOSTCXXFLAGS := -g
Patrick Georgi0588d192009-08-12 15:00:51 +000079
Patrick Georgi828e0e82015-04-04 15:50:20 +020080PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I .
81
Patrick Georgi0588d192009-08-12 15:00:51 +000082DOXYGEN := doxygen
83DOXYGEN_OUTPUT_DIR := doxygen
84
Patrick Georgi71b84802011-02-22 14:35:05 +000085all: real-all
86
Martin Roth4eea1742015-11-25 11:50:04 -070087help_coreboot help::
88 @echo '*** coreboot platform targets ***'
Martin Roth76f14b22015-11-18 13:09:23 -070089 @echo ' Use "make [target] V=1" for extra build debug information'
90 @echo ' all - Build coreboot'
91 @echo ' clean - Remove coreboot build artifacts'
92 @echo ' distclean - Remove build artifacts and config files'
93 @echo ' doxygen - Build doxygen documentation for coreboot'
Martin Rothb1574e32016-07-07 15:50:28 -060094 @echo ' doxyplatform - Build doxygen documentation for the current platform'
Martin Roth76f14b22015-11-18 13:09:23 -070095 @echo ' what-jenkins-does - Run platform build tests (Use CPUS=# for more cores)'
96 @echo ' printall - print makefile info for debugging'
97 @echo ' lint / lint-stable - run coreboot lint tools (all / minimal)'
Werner Zeh2de64102016-01-12 12:45:49 +010098 @echo ' gitconfig - set up git to submit patches to coreboot'
Martin Roth76f14b22015-11-18 13:09:23 -070099 @echo ' ctags / ctags-project - make ctags file for all of coreboot or current board'
100 @echo ' cscope / cscope-project - make cscope.out file for coreboot or current board'
101 @echo
102
Patrick Georgie38d0a62011-03-01 08:09:22 +0000103# This include must come _before_ the pattern rules below!
Patrick Georgi71b84802011-02-22 14:35:05 +0000104# Order _does_ matter for pattern rules.
Stefan Reinauerde60c882015-06-29 14:44:37 -0700105include $(srck)/Makefile
Patrick Georgi71b84802011-02-22 14:35:05 +0000106
Patrick Georgicf036d12010-04-21 06:36:20 +0000107# Three cases where we don't need fully populated $(obj) lists:
108# 1. when no .config exists
109# 2. when make config (in any flavour) is run
110# 3. when make distclean is run
111# Don't waste time on reading all Makefile.incs in these cases
Patrick Georgi0588d192009-08-12 15:00:51 +0000112ifeq ($(strip $(HAVE_DOTCONFIG)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000113NOCOMPILE:=1
114endif
115ifneq ($(MAKECMDGOALS),)
Martin Roth109a7db2016-08-11 18:16:59 -0600116ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000117NOCOMPILE:=1
118endif
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100119ifeq ($(MAKECMDGOALS), %clean)
Zheng Bao0fd93d62012-10-22 16:36:03 +0800120NOMKDIR:=1
121endif
Patrick Georgicf036d12010-04-21 06:36:20 +0000122endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000123
Patrick Georgicf036d12010-04-21 06:36:20 +0000124ifeq ($(NOCOMPILE),1)
Patrick Georgie38d0a62011-03-01 08:09:22 +0000125include $(TOPLEVEL)/Makefile.inc
Martin Roth67975572016-03-07 16:38:52 -0700126include $(TOPLEVEL)/payloads/Makefile.inc
Martin Roth20aa0432017-01-26 10:51:43 -0700127real-all:
128 @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
129 @echo "Please specify a config file or run 'make menuconfig' to" >&2
130 @echo "generate a new config file." >&2
131 @exit 1
Patrick Georgi0588d192009-08-12 15:00:51 +0000132else
133
Paul Kocialkowski585c7812016-07-13 11:00:41 +0200134include $(DOTCONFIG)
Patrick Georgi0588d192009-08-12 15:00:51 +0000135
Patrick Georgi0ffef882017-01-19 23:20:14 +0100136# in addition to the dependency below, create the file if it doesn't exist
137# to silence stupid warnings about a file that would be generated anyway.
138$(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile)))
139
140.xcompile: util/xcompile/xcompile
141 rm -f $@
142 $< $(XGCCPATH) > $@.tmp
143 \mv -f $@.tmp $@ 2> /dev/null
144 rm -f $@.tmp
145
Patrick Georgi6dda31d2015-11-19 15:15:33 +0100146-include .xcompile
147
148ifneq ($(XCOMPILE_COMPLETE),1)
149$(shell rm -f .xcompile)
150$(error .xcompile deleted because it's invalid. \
151 Restarting the build should fix that, or explain the problem)
152endif
Patrick Georgi7b9762f2015-06-04 13:18:11 +0200153
Patrick Georgicc84a002014-05-14 21:05:35 +0200154ifneq ($(CONFIG_MMX),y)
155CFLAGS_x86_32 += -mno-mmx
156endif
157
Patrick Georgicc84a002014-05-14 21:05:35 +0200158include toolchain.inc
159
Zheng Bao07648922015-11-13 10:42:27 +0800160strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
Martin Rothbbf13992016-01-25 15:59:24 -0700161# fix makefile syntax highlighting after strip macro \" "))
Patrick Georgia84e98b2010-03-16 19:01:32 +0000162
Patrick Georgi0588d192009-08-12 15:00:51 +0000163# The primary target needs to be here before we include the
164# other files
165
Patrick Georgi71b84802011-02-22 14:35:05 +0000166real-all: real-target
Patrick Georgi0588d192009-08-12 15:00:51 +0000167
Patrick Georgi51e142f2010-03-27 17:18:39 +0000168# must come rather early
169.SECONDEXPANSION:
170
Stefan Reinauer0d869ed2015-07-17 13:31:16 -0700171$(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG)
Patrick Georgi78a5f222017-01-30 15:29:34 +0100172 +$(MAKE) oldconfig
Patrick Georgi0588d192009-08-12 15:00:51 +0000173
Patrick Georgi58262652011-02-17 20:47:49 +0000174# Add a new class of source/object files to the build system
175add-class= \
176 $(eval $(1)-srcs:=) \
177 $(eval $(1)-objs:=) \
178 $(eval classes+=$(1))
Patrick Georgi8463dd92010-09-30 16:55:02 +0000179
Patrick Georgi58262652011-02-17 20:47:49 +0000180# Special classes are managed types with special behaviour
181# On parse time, for each entry in variable $(1)-y
182# a handler $(1)-handler is executed with the arguments:
183# * $(1): directory the parser is in
184# * $(2): current entry
185add-special-class= \
186 $(eval $(1):=) \
187 $(eval special-classes+=$(1))
188
Nico Huber81b09f42016-01-23 00:50:00 +0100189# Converts one or more source file paths to their corresponding build/ paths.
Nico Huber2e09d2b2016-01-14 01:13:33 +0100190# Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
191# their name.
Nico Huber81b09f42016-01-23 00:50:00 +0100192# $1 stage name
193# $2 file path (list)
Nico Huber98fc4262016-01-23 01:24:33 +0100194src-to-obj=\
195 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
196 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200197 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber98fc4262016-01-23 01:24:33 +0100198 $(patsubst src/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100199 $(patsubst %.ads,%.o,\
200 $(patsubst %.adb,%.o,\
Nico Huber98fc4262016-01-23 01:24:33 +0100201 $(patsubst %.c,%.o,\
202 $(patsubst %.S,%.o,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200203 $(subst .$(1),,$(2))))))))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100204
205# Converts one or more source file paths to the corresponding build/ paths
206# of their Ada library information (.ali) files.
207# $1 stage name
208# $2 file path (list)
209src-to-ali=\
210 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
211 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200212 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100213 $(patsubst src/%,$(obj)/%,\
214 $(patsubst %.ads,%.ali,\
215 $(patsubst %.adb,%.ali,\
216 $(subst .$(1),,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200217 $(filter %.ads %.adb,$(2)))))))))
Nico Huber81b09f42016-01-23 00:50:00 +0100218
Patrick Georgi47d68d82010-03-06 21:18:43 +0000219# Clean -y variables, include Makefile.inc
Patrick Georgi8463dd92010-09-30 16:55:02 +0000220# Add paths to files in X-y to X-srcs
Patrick Georgi47d68d82010-03-06 21:18:43 +0000221# Add subdirs-y to subdirs
222includemakefiles= \
Patrick Georgi58262652011-02-17 20:47:49 +0000223 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
Patrick Georgi47d68d82010-03-06 21:18:43 +0000224 $(eval -include $(1)) \
Patrick Georgi58262652011-02-17 20:47:49 +0000225 $(foreach class,$(classes-y), $(call add-class,$(class))) \
226 $(foreach class,$(classes), \
227 $(eval $(class)-srcs+= \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700228 $$(subst $(absobj)/,$(obj)/, \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000229 $$(subst $(top)/,, \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700230 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \
Patrick Georgi58262652011-02-17 20:47:49 +0000231 $(foreach special,$(special-classes), \
232 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
Jonathan Kollasch7ff5b442010-09-28 21:11:48 +0000233 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
Patrick Georgi47d68d82010-03-06 21:18:43 +0000234
Patrick Georgi8463dd92010-09-30 16:55:02 +0000235# For each path in $(subdirs) call includemakefiles
Patrick Georgi47d68d82010-03-06 21:18:43 +0000236# Repeat until subdirs is empty
237evaluate_subdirs= \
238 $(eval cursubdirs:=$(subdirs)) \
239 $(eval subdirs:=) \
240 $(foreach dir,$(cursubdirs), \
Patrick Georgi58262652011-02-17 20:47:49 +0000241 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000242 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000243
244# collect all object files eligible for building
Patrick Georgie38d0a62011-03-01 08:09:22 +0000245subdirs:=$(TOPLEVEL)
Julius Wernere91d1702017-03-20 15:32:15 -0700246postinclude-hooks :=
Patrick Georgi51e142f2010-03-27 17:18:39 +0000247$(eval $(call evaluate_subdirs))
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100248ifeq ($(FAILBUILD),1)
249$(error cannot continue build)
250endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000251
Julius Wernere91d1702017-03-20 15:32:15 -0700252# Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
253$(eval $(postinclude-hooks))
254
Patrick Georgi94a45862011-10-25 14:32:21 -0700255# Eliminate duplicate mentions of source files in a class
256$(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
257
Nico Huber2e09d2b2016-01-14 01:13:33 +0100258# To track dependencies, we need all Ada specification (.ads) files in
259# *-srcs. Extract / filter all specification files that have a matching
260# body (.adb) file here (specifications without a body are valid sources
261# in Ada).
262$(foreach class,$(classes),$(eval $(class)-extra-specs := \
263 $(filter \
264 $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \
265 $(filter %.ads,$($(class)-srcs)))))
266$(foreach class,$(classes),$(eval $(class)-srcs := \
267 $(filter-out $($(class)-extra-specs),$($(class)-srcs))))
268
Patrick Georgi10f86b02015-03-27 16:56:23 +0100269$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100270$(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs))))
271
272# For Ada includes
273$(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs)))))
Patrick Georgid3428b02010-02-24 13:18:01 +0000274
Nico Huber963bed52013-05-15 11:47:51 +0200275# Save all objs before processing them (for dependency inclusion)
276originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
277
Patrick Georgi79f90102012-11-25 14:31:08 +0100278# Call post-processors if they're defined
279$(foreach class,$(classes),\
280 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
281
Patrick Georgi58262652011-02-17 20:47:49 +0000282allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
283allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000284alldirs:=$(sort $(abspath $(dir $(allobjs))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000285
Nico Huber2e09d2b2016-01-14 01:13:33 +0100286# Reads dependencies from an Ada library information (.ali) file
287# Only basenames (with suffix) are preserved so we have to look the
288# paths up in $($(stage)-srcs).
289# $1 stage name
290# $2 ali file
291create_ada_deps=$$(if $(2),\
292 gnat.adc \
293 $$(filter \
294 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
295 $$($(1)-srcs) $$($(1)-extra-specs)))
296
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000297# macro to define template macros that are used by use_template macro
298define create_cc_template
Patrick Georgi71b84802011-02-22 14:35:05 +0000299# $1 obj class
Patrick Georgi990e7c92015-04-03 10:47:15 +0200300# $2 source suffix (c, S, ld, ...)
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700301# $3 additional compiler flags
302# $4 additional dependencies
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000303ifn$(EMPTY)def $(1)-objs_$(2)_template
Patrick Georgi8463dd92010-09-30 16:55:02 +0000304de$(EMPTY)fine $(1)-objs_$(2)_template
Nico Huber2e09d2b2016-01-14 01:13:33 +0100305$$(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 +0000306 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
Nico Huber2e09d2b2016-01-14 01:13:33 +0100307 $(CC_$(1)) \
308 $$(if $$(filter-out ads adb,$(2)), \
309 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@), \
310 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs))) \
311 $(3) -c -o $$$$@ $$$$<
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000312en$(EMPTY)def
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000313end$(EMPTY)if
Patrick Georgi0588d192009-08-12 15:00:51 +0000314endef
315
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000316filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
317$(foreach class,$(classes), \
318 $(foreach type,$(call filetypes-of-class,$(class)), \
Patrick Georgi2459aee2015-03-27 15:27:21 +0100319 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
Patrick Georgi416ab382015-04-03 10:19:38 +0200320 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
321 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000322
Patrick Georgid69839b2015-04-03 10:32:17 +0200323foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
Patrick Georgi58262652011-02-17 20:47:49 +0000324$(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000325
Nico Huber2e09d2b2016-01-14 01:13:33 +0100326# To supported complex package initializations, we need to call the
327# emitted code explicitly. gnatbind gathers all the calls for us
328# and exports them as a procedure $(stage)_adainit(). Every stage that
329# uses Ada code has to call it!
330define gnatbind_template
331# $1 class
332$$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
333 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
334 # We have to give gnatbind a simple filename (without leading
335 # path components) so just cd there.
336 cd $$(dir $$@) && \
337 $$(GNATBIND_$(1)) -a -n \
Nico Huberbe5492a2015-09-29 16:41:19 +0200338 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100339 -L$(1)_ada -o $$(notdir $$@) \
340 $$(subst $$(dir $$@),,$$^)
341$$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
342 @printf " CC $$(subst $$(obj)/,,$$@)\n"
343 $(CC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
344$(1)-objs += $$(obj)/$(1)/b__$(1).o
Nico Huberddb24652016-09-19 11:50:04 +0200345$($(1)-alis): %.ali: %.o ;
Nico Huber2e09d2b2016-01-14 01:13:33 +0100346endef
347
Nico Huberbe5492a2015-09-29 16:41:19 +0200348$(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100349 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
350
Julius Wernerf97b88b2014-12-05 12:32:09 -0800351DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
Stefan Reinauer6bee9512010-03-24 15:51:48 +0000352-include $(DEPENDENCIES)
353
Patrick Georgi0588d192009-08-12 15:00:51 +0000354printall:
Martin Roth09b64442016-06-05 10:52:43 -0600355 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
356 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
357 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
358 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
359 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
Patrick Georgi0588d192009-08-12 15:00:51 +0000360endif
361
Patrick Georgi40ad8422011-05-21 22:18:59 +0000362ifndef NOMKDIR
Stefan Reinauerde60c882015-06-29 14:44:37 -0700363$(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
Patrick Georgi40ad8422011-05-21 22:18:59 +0000364endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000365
Martin Roth9c1b33e2015-07-29 14:55:18 -0700366$(obj)/project_filelist.txt: all
367 find $(obj) -name "*.d" -exec cat {} \; | \
368 sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
369 grep -v '\.o$$' > $(obj)/project_filelist.txt
370
Martin Rotha18353d2017-06-06 06:44:46 -0600371filelist: clean
372 $(MAKE) $(obj)/project_filelist.txt
373 printf "\nFiles used in build:\n"
374 cat $(obj)/project_filelist.txt
375
Martin Roth9c1b33e2015-07-29 14:55:18 -0700376#works with either exuberant ctags or ctags.emacs
377ctags-project: clean-ctags $(obj)/project_filelist.txt
378 cat $(obj)/project_filelist.txt | \
379 xargs ctags -o tags
380
381cscope-project: clean-cscope $(obj)/project_filelist.txt
382 cat $(obj)/project_filelist.txt | xargs cscope -b
383
Warren Turkala9fc3302010-09-03 08:57:32 +0000384cscope:
385 cscope -bR
386
Patrick Georgi0588d192009-08-12 15:00:51 +0000387doxy: doxygen
388doxygen:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500389 $(DOXYGEN) Documentation/Doxyfile.coreboot
Patrick Georgi0588d192009-08-12 15:00:51 +0000390
Martin Rothd7689e42014-12-29 14:56:19 -0700391doxygen_simple:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500392 $(DOXYGEN) Documentation/Doxyfile.coreboot_simple
Martin Rothd7689e42014-12-29 14:56:19 -0700393
Martin Rothb1574e32016-07-07 15:50:28 -0600394doxyplatform doxygen_platform: $(obj)/project_filelist.txt
395 echo
396 echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)"
397 export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \
398 mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \
399 export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \
400 export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \
401 $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform
402
Patrick Georgi0588d192009-08-12 15:00:51 +0000403doxyclean: doxygen-clean
404doxygen-clean:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000405 rm -rf $(DOXYGEN_OUTPUT_DIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000406
Patrick Georgi71b84802011-02-22 14:35:05 +0000407clean-for-update: doxygen-clean clean-for-update-target
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100408 rm -rf $(obj) .xcompile
Patrick Georgi0588d192009-08-12 15:00:51 +0000409
Patrick Georgi71b84802011-02-22 14:35:05 +0000410clean: clean-for-update clean-target
411 rm -f .ccwrap
Warren Turkal0e8f2042010-09-27 21:14:19 +0000412
Warren Turkala9fc3302010-09-03 08:57:32 +0000413clean-cscope:
414 rm -f cscope.out
415
Martin Roth9c1b33e2015-07-29 14:55:18 -0700416clean-ctags:
417 rm -f tags
418
Martin Roth67975572016-03-07 16:38:52 -0700419distclean: clean clean-ctags clean-cscope distclean-payloads
Patrick Georgi80656af2017-04-26 11:58:44 +0200420 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
Patrick Georgi0588d192009-08-12 15:00:51 +0000421
Martin Rothd7689e42014-12-29 14:56:19 -0700422.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple
Martin Roth9c1b33e2015-07-29 14:55:18 -0700423.PHONY: ctags-project cscope-project clean-ctags