blob: 4aa179d6601c5f359b801bc37f07c60901bac7bb [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 Roth763e4932018-01-27 16:42:43 -0700101 @echo ' filelist - Show files used in current build'
Martin Roth76f14b22015-11-18 13:09:23 -0700102 @echo ' printall - print makefile info for debugging'
Werner Zeh2de64102016-01-12 12:45:49 +0100103 @echo ' gitconfig - set up git to submit patches to coreboot'
Martin Roth76f14b22015-11-18 13:09:23 -0700104 @echo ' ctags / ctags-project - make ctags file for all of coreboot or current board'
105 @echo ' cscope / cscope-project - make cscope.out file for coreboot or current board'
106 @echo
107
Patrick Georgie38d0a62011-03-01 08:09:22 +0000108# This include must come _before_ the pattern rules below!
Patrick Georgi71b84802011-02-22 14:35:05 +0000109# Order _does_ matter for pattern rules.
Stefan Reinauerde60c882015-06-29 14:44:37 -0700110include $(srck)/Makefile
Patrick Georgi71b84802011-02-22 14:35:05 +0000111
Patrick Georgicf036d12010-04-21 06:36:20 +0000112# Three cases where we don't need fully populated $(obj) lists:
113# 1. when no .config exists
114# 2. when make config (in any flavour) is run
115# 3. when make distclean is run
116# Don't waste time on reading all Makefile.incs in these cases
Patrick Georgi0588d192009-08-12 15:00:51 +0000117ifeq ($(strip $(HAVE_DOTCONFIG)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000118NOCOMPILE:=1
119endif
120ifneq ($(MAKECMDGOALS),)
Martin Roth109a7db2016-08-11 18:16:59 -0600121ifneq ($(filter %config %clean cross% clang iasl gnumake lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
Patrick Georgicf036d12010-04-21 06:36:20 +0000122NOCOMPILE:=1
123endif
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100124ifeq ($(MAKECMDGOALS), %clean)
Zheng Bao0fd93d62012-10-22 16:36:03 +0800125NOMKDIR:=1
126endif
Patrick Georgicf036d12010-04-21 06:36:20 +0000127endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000128
Patrick Georgicf036d12010-04-21 06:36:20 +0000129ifeq ($(NOCOMPILE),1)
Patrick Georgie38d0a62011-03-01 08:09:22 +0000130include $(TOPLEVEL)/Makefile.inc
Martin Roth67975572016-03-07 16:38:52 -0700131include $(TOPLEVEL)/payloads/Makefile.inc
Martin Rothe624e272017-07-31 11:52:58 -0600132include $(TOPLEVEL)/util/testing/Makefile.inc
Naresh G Solanki57443692017-08-31 22:32:49 +0530133-include $(TOPLEVEL)/site-local/Makefile.inc
Martin Roth20aa0432017-01-26 10:51:43 -0700134real-all:
135 @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
136 @echo "Please specify a config file or run 'make menuconfig' to" >&2
137 @echo "generate a new config file." >&2
138 @exit 1
Patrick Georgi0588d192009-08-12 15:00:51 +0000139else
140
Paul Kocialkowski585c7812016-07-13 11:00:41 +0200141include $(DOTCONFIG)
Patrick Georgi0588d192009-08-12 15:00:51 +0000142
Patrick Georgi0ffef882017-01-19 23:20:14 +0100143# in addition to the dependency below, create the file if it doesn't exist
144# to silence stupid warnings about a file that would be generated anyway.
145$(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile)))
146
147.xcompile: util/xcompile/xcompile
148 rm -f $@
149 $< $(XGCCPATH) > $@.tmp
150 \mv -f $@.tmp $@ 2> /dev/null
151 rm -f $@.tmp
152
Patrick Georgi6dda31d2015-11-19 15:15:33 +0100153-include .xcompile
154
155ifneq ($(XCOMPILE_COMPLETE),1)
156$(shell rm -f .xcompile)
157$(error .xcompile deleted because it's invalid. \
158 Restarting the build should fix that, or explain the problem)
159endif
Patrick Georgi7b9762f2015-06-04 13:18:11 +0200160
Patrick Georgicc84a002014-05-14 21:05:35 +0200161ifneq ($(CONFIG_MMX),y)
162CFLAGS_x86_32 += -mno-mmx
163endif
164
Patrick Georgicc84a002014-05-14 21:05:35 +0200165include toolchain.inc
166
Zheng Bao07648922015-11-13 10:42:27 +0800167strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
Martin Rothbbf13992016-01-25 15:59:24 -0700168# fix makefile syntax highlighting after strip macro \" "))
Patrick Georgia84e98b2010-03-16 19:01:32 +0000169
Patrick Georgi0588d192009-08-12 15:00:51 +0000170# The primary target needs to be here before we include the
171# other files
172
Patrick Georgi71b84802011-02-22 14:35:05 +0000173real-all: real-target
Patrick Georgi0588d192009-08-12 15:00:51 +0000174
Patrick Georgi51e142f2010-03-27 17:18:39 +0000175# must come rather early
176.SECONDEXPANSION:
177
Stefan Reinauer0d869ed2015-07-17 13:31:16 -0700178$(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG)
Patrick Georgi78a5f222017-01-30 15:29:34 +0100179 +$(MAKE) oldconfig
Patrick Georgi0588d192009-08-12 15:00:51 +0000180
Patrick Georgi58262652011-02-17 20:47:49 +0000181# Add a new class of source/object files to the build system
182add-class= \
183 $(eval $(1)-srcs:=) \
184 $(eval $(1)-objs:=) \
185 $(eval classes+=$(1))
Patrick Georgi8463dd92010-09-30 16:55:02 +0000186
Patrick Georgi58262652011-02-17 20:47:49 +0000187# Special classes are managed types with special behaviour
188# On parse time, for each entry in variable $(1)-y
189# a handler $(1)-handler is executed with the arguments:
190# * $(1): directory the parser is in
191# * $(2): current entry
192add-special-class= \
193 $(eval $(1):=) \
194 $(eval special-classes+=$(1))
195
Nico Huber81b09f42016-01-23 00:50:00 +0100196# Converts one or more source file paths to their corresponding build/ paths.
Nico Huber2e09d2b2016-01-14 01:13:33 +0100197# Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
198# their name.
Nico Huber81b09f42016-01-23 00:50:00 +0100199# $1 stage name
200# $2 file path (list)
Nico Huber98fc4262016-01-23 01:24:33 +0100201src-to-obj=\
202 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
203 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200204 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber98fc4262016-01-23 01:24:33 +0100205 $(patsubst src/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100206 $(patsubst %.ads,%.o,\
207 $(patsubst %.adb,%.o,\
Nico Huber98fc4262016-01-23 01:24:33 +0100208 $(patsubst %.c,%.o,\
209 $(patsubst %.S,%.o,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200210 $(subst .$(1),,$(2))))))))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100211
212# Converts one or more source file paths to the corresponding build/ paths
213# of their Ada library information (.ali) files.
214# $1 stage name
215# $2 file path (list)
216src-to-ali=\
217 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
218 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200219 $(patsubst 3rdparty/%,$(obj)/%,\
Nico Huber2e09d2b2016-01-14 01:13:33 +0100220 $(patsubst src/%,$(obj)/%,\
221 $(patsubst %.ads,%.ali,\
222 $(patsubst %.adb,%.ali,\
223 $(subst .$(1),,\
Nico Huberd011b6b2016-10-05 17:41:31 +0200224 $(filter %.ads %.adb,$(2)))))))))
Nico Huber81b09f42016-01-23 00:50:00 +0100225
Patrick Georgi47d68d82010-03-06 21:18:43 +0000226# Clean -y variables, include Makefile.inc
Patrick Georgi8463dd92010-09-30 16:55:02 +0000227# Add paths to files in X-y to X-srcs
Patrick Georgi47d68d82010-03-06 21:18:43 +0000228# Add subdirs-y to subdirs
229includemakefiles= \
Patrick Georgi58262652011-02-17 20:47:49 +0000230 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
Patrick Georgi47d68d82010-03-06 21:18:43 +0000231 $(eval -include $(1)) \
Patrick Georgi58262652011-02-17 20:47:49 +0000232 $(foreach class,$(classes-y), $(call add-class,$(class))) \
233 $(foreach class,$(classes), \
234 $(eval $(class)-srcs+= \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700235 $$(subst $(absobj)/,$(obj)/, \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000236 $$(subst $(top)/,, \
Vadim Bendebury5f7e4f02015-05-06 21:00:10 -0700237 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \
Patrick Georgi58262652011-02-17 20:47:49 +0000238 $(foreach special,$(special-classes), \
239 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
Patrick Georgi64b8fba2017-10-28 05:26:01 -0400240 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(wildcard $$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y))))))
Patrick Georgi47d68d82010-03-06 21:18:43 +0000241
Patrick Georgi8463dd92010-09-30 16:55:02 +0000242# For each path in $(subdirs) call includemakefiles
Patrick Georgi47d68d82010-03-06 21:18:43 +0000243# Repeat until subdirs is empty
244evaluate_subdirs= \
245 $(eval cursubdirs:=$(subdirs)) \
246 $(eval subdirs:=) \
247 $(foreach dir,$(cursubdirs), \
Patrick Georgi58262652011-02-17 20:47:49 +0000248 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
Patrick Georgi51e142f2010-03-27 17:18:39 +0000249 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000250
251# collect all object files eligible for building
Patrick Georgie38d0a62011-03-01 08:09:22 +0000252subdirs:=$(TOPLEVEL)
Julius Wernere91d1702017-03-20 15:32:15 -0700253postinclude-hooks :=
Patrick Georgi51e142f2010-03-27 17:18:39 +0000254$(eval $(call evaluate_subdirs))
Patrick Georgi70c85ea2013-02-16 01:06:57 +0100255ifeq ($(FAILBUILD),1)
256$(error cannot continue build)
257endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000258
Julius Wernere91d1702017-03-20 15:32:15 -0700259# Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
260$(eval $(postinclude-hooks))
261
Patrick Georgi94a45862011-10-25 14:32:21 -0700262# Eliminate duplicate mentions of source files in a class
263$(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
264
Nico Huber2e09d2b2016-01-14 01:13:33 +0100265# To track dependencies, we need all Ada specification (.ads) files in
266# *-srcs. Extract / filter all specification files that have a matching
267# body (.adb) file here (specifications without a body are valid sources
268# in Ada).
269$(foreach class,$(classes),$(eval $(class)-extra-specs := \
270 $(filter \
271 $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \
272 $(filter %.ads,$($(class)-srcs)))))
273$(foreach class,$(classes),$(eval $(class)-srcs := \
274 $(filter-out $($(class)-extra-specs),$($(class)-srcs))))
275
Patrick Georgi10f86b02015-03-27 16:56:23 +0100276$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs))))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100277$(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs))))
278
279# For Ada includes
280$(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs)))))
Patrick Georgid3428b02010-02-24 13:18:01 +0000281
Nico Huber963bed52013-05-15 11:47:51 +0200282# Save all objs before processing them (for dependency inclusion)
283originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
284
Patrick Georgi79f90102012-11-25 14:31:08 +0100285# Call post-processors if they're defined
286$(foreach class,$(classes),\
287 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
288
Patrick Georgi58262652011-02-17 20:47:49 +0000289allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
290allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
Patrick Georgi0588d192009-08-12 15:00:51 +0000291alldirs:=$(sort $(abspath $(dir $(allobjs))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000292
Nico Huber2e09d2b2016-01-14 01:13:33 +0100293# Reads dependencies from an Ada library information (.ali) file
294# Only basenames (with suffix) are preserved so we have to look the
295# paths up in $($(stage)-srcs).
296# $1 stage name
297# $2 ali file
298create_ada_deps=$$(if $(2),\
299 gnat.adc \
300 $$(filter \
301 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
302 $$($(1)-srcs) $$($(1)-extra-specs)))
303
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000304# macro to define template macros that are used by use_template macro
305define create_cc_template
Patrick Georgi71b84802011-02-22 14:35:05 +0000306# $1 obj class
Patrick Georgi990e7c92015-04-03 10:47:15 +0200307# $2 source suffix (c, S, ld, ...)
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700308# $3 additional compiler flags
309# $4 additional dependencies
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000310ifn$(EMPTY)def $(1)-objs_$(2)_template
Patrick Georgi8463dd92010-09-30 16:55:02 +0000311de$(EMPTY)fine $(1)-objs_$(2)_template
Nico Huber1850aa62017-09-03 23:42:58 +0200312ifn$(EMPTY)eq ($(filter ads adb,$(2)),)
Nico Huber2e09d2b2016-01-14 01:13:33 +0100313$$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $$(call create_ada_deps,$1,$$(call src-to-ali,$1,$$(1).$2)) $(KCONFIG_AUTOHEADER) $(4)
Nico Huber1850aa62017-09-03 23:42:58 +0200314 @printf " GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
315 $(GCC_$(1)) \
316 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs)) \
317 $(3) -c -o $$$$@ $$$$<
318el$(EMPTY)se
319$$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $(KCONFIG_AUTOHEADER) $(4)
Patrick Georgi1cd76e72010-04-19 20:39:22 +0000320 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
Nico Huber2e09d2b2016-01-14 01:13:33 +0100321 $(CC_$(1)) \
Nico Huber1850aa62017-09-03 23:42:58 +0200322 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@) \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100323 $(3) -c -o $$$$@ $$$$<
Nico Huber1850aa62017-09-03 23:42:58 +0200324end$(EMPTY)if
Patrick Georgi patrick.georgic5f773d2010-03-16 12:01:13 +0000325en$(EMPTY)def
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000326end$(EMPTY)if
Patrick Georgi0588d192009-08-12 15:00:51 +0000327endef
328
Patrick Georgib8cdd9b2011-02-17 20:48:45 +0000329filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
330$(foreach class,$(classes), \
331 $(foreach type,$(call filetypes-of-class,$(class)), \
Patrick Georgi2459aee2015-03-27 15:27:21 +0100332 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
Patrick Georgi416ab382015-04-03 10:19:38 +0200333 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
334 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000335
Patrick Georgid69839b2015-04-03 10:32:17 +0200336foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
Patrick Georgi58262652011-02-17 20:47:49 +0000337$(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
Patrick Georgi0588d192009-08-12 15:00:51 +0000338
Nico Huber2e09d2b2016-01-14 01:13:33 +0100339# To supported complex package initializations, we need to call the
340# emitted code explicitly. gnatbind gathers all the calls for us
341# and exports them as a procedure $(stage)_adainit(). Every stage that
342# uses Ada code has to call it!
343define gnatbind_template
344# $1 class
345$$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
346 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
347 # We have to give gnatbind a simple filename (without leading
348 # path components) so just cd there.
349 cd $$(dir $$@) && \
350 $$(GNATBIND_$(1)) -a -n \
Nico Huberbe5492a2015-09-29 16:41:19 +0200351 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100352 -L$(1)_ada -o $$(notdir $$@) \
353 $$(subst $$(dir $$@),,$$^)
354$$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
Nico Huber1850aa62017-09-03 23:42:58 +0200355 @printf " GCC $$(subst $$(obj)/,,$$@)\n"
356 $(GCC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
Nico Huber2e09d2b2016-01-14 01:13:33 +0100357$(1)-objs += $$(obj)/$(1)/b__$(1).o
Nico Huberddb24652016-09-19 11:50:04 +0200358$($(1)-alis): %.ali: %.o ;
Nico Huber2e09d2b2016-01-14 01:13:33 +0100359endef
360
Nico Huberbe5492a2015-09-29 16:41:19 +0200361$(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
Nico Huber2e09d2b2016-01-14 01:13:33 +0100362 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
363
Julius Wernerf97b88b2014-12-05 12:32:09 -0800364DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
Stefan Reinauer6bee9512010-03-24 15:51:48 +0000365-include $(DEPENDENCIES)
366
Patrick Georgi0588d192009-08-12 15:00:51 +0000367printall:
Martin Roth09b64442016-06-05 10:52:43 -0600368 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
369 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
370 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
371 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
372 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
Patrick Georgi0588d192009-08-12 15:00:51 +0000373endif
374
Patrick Georgi40ad8422011-05-21 22:18:59 +0000375ifndef NOMKDIR
Stefan Reinauerde60c882015-06-29 14:44:37 -0700376$(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
Patrick Georgi40ad8422011-05-21 22:18:59 +0000377endif
Patrick Georgi0588d192009-08-12 15:00:51 +0000378
Martin Roth9b0204d2017-09-18 09:25:18 -0600379$(obj)/project_filelist.txt:
380 if [ -z "$(wildcard $(obj)/coreboot.rom)" ]; then \
381 echo "*** Error: Project must be built before generating file list ***"; \
382 exit 1; \
383 fi
Martin Roth8a027272017-09-26 09:53:30 -0600384 find $(obj) -path "$(obj)/util" -prune -o -name "*.d" -exec cat {} \; | \
385 sed "s|$(top)/||" | sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
Martin Roth9c1b33e2015-07-29 14:55:18 -0700386 grep -v '\.o$$' > $(obj)/project_filelist.txt
387
Martin Roth9b0204d2017-09-18 09:25:18 -0600388filelist: $(obj)/project_filelist.txt
Martin Rotha18353d2017-06-06 06:44:46 -0600389 printf "\nFiles used in build:\n"
390 cat $(obj)/project_filelist.txt
391
Martin Roth9c1b33e2015-07-29 14:55:18 -0700392#works with either exuberant ctags or ctags.emacs
393ctags-project: clean-ctags $(obj)/project_filelist.txt
394 cat $(obj)/project_filelist.txt | \
395 xargs ctags -o tags
396
397cscope-project: clean-cscope $(obj)/project_filelist.txt
398 cat $(obj)/project_filelist.txt | xargs cscope -b
399
Warren Turkala9fc3302010-09-03 08:57:32 +0000400cscope:
401 cscope -bR
402
Patrick Georgi0588d192009-08-12 15:00:51 +0000403doxy: doxygen
404doxygen:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500405 $(DOXYGEN) Documentation/Doxyfile.coreboot
Patrick Georgi0588d192009-08-12 15:00:51 +0000406
Martin Rothd7689e42014-12-29 14:56:19 -0700407doxygen_simple:
Nicky Sielickie08a2a52015-06-06 08:55:16 -0500408 $(DOXYGEN) Documentation/Doxyfile.coreboot_simple
Martin Rothd7689e42014-12-29 14:56:19 -0700409
Martin Rothb1574e32016-07-07 15:50:28 -0600410doxyplatform doxygen_platform: $(obj)/project_filelist.txt
411 echo
412 echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)"
413 export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \
414 mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \
415 export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \
416 export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \
417 $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform
418
Patrick Georgi0588d192009-08-12 15:00:51 +0000419doxyclean: doxygen-clean
420doxygen-clean:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000421 rm -rf $(DOXYGEN_OUTPUT_DIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000422
Patrick Georgi71b84802011-02-22 14:35:05 +0000423clean-for-update: doxygen-clean clean-for-update-target
Patrick Georgi02ae0bf2013-02-09 15:45:02 +0100424 rm -rf $(obj) .xcompile
Patrick Georgi0588d192009-08-12 15:00:51 +0000425
Martin Roth20cd54f2017-03-26 18:49:02 -0600426clean: clean-for-update clean-target clean-utils
Patrick Georgi71b84802011-02-22 14:35:05 +0000427 rm -f .ccwrap
Warren Turkal0e8f2042010-09-27 21:14:19 +0000428
Warren Turkala9fc3302010-09-03 08:57:32 +0000429clean-cscope:
430 rm -f cscope.out
431
Martin Roth9c1b33e2015-07-29 14:55:18 -0700432clean-ctags:
433 rm -f tags
434
Martin Roth20cd54f2017-03-26 18:49:02 -0600435clean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600436 $(foreach tool, $(TOOLLIST), \
437 $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
Martin Roth20cd54f2017-03-26 18:49:02 -0600438
439distclean-utils:
Martin Roth1d721ed2017-07-07 10:49:48 -0600440 $(foreach tool, $(TOOLLIST), \
441 $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
Martin Roth20cd54f2017-03-26 18:49:02 -0600442 rm -f /util/$(tool)/junit.xml;)
443
444distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
Patrick Georgi80656af2017-04-26 11:58:44 +0200445 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
Martin Roth20cd54f2017-03-26 18:49:02 -0600446 rm -rf coreboot-builds coreboot-builds-chromeos
447 rm -f abuild*.xml junit.xml* util/lint/junit.xml
Patrick Georgi0588d192009-08-12 15:00:51 +0000448
Martin Rothd7689e42014-12-29 14:56:19 -0700449.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple
Martin Roth9c1b33e2015-07-29 14:55:18 -0700450.PHONY: ctags-project cscope-project clean-ctags