1 ## SPDX-License-Identifier: BSD-3-Clause
3 ifneq ($(words $(CURDIR
)),1)
4 $(error Error
: Path to the main directory cannot contain spaces
)
8 srck
:= $(top
)/util
/kconfig
10 override obj
:= $(subst $(top
)/,,$(abspath
$(obj
)))
11 xcompile ?
= $(obj
)/xcompile
12 objutil ?
= $(obj
)/util
13 objk
:= $(objutil
)/kconfig
14 absobj
:= $(abspath
$(obj
))
18 VBOOT_HOST_BUILD ?
= $(abspath
$(objutil
)/vboot_lib
)
20 COREBOOT_EXPORTS
:= COREBOOT_EXPORTS
21 COREBOOT_EXPORTS
+= top src srck obj objutil objk
23 DOTCONFIG ?
= $(top
)/.config
24 KCONFIG_CONFIG
= $(DOTCONFIG
)
25 KCONFIG_AUTOADS
:= $(obj
)/cb-config.ads
26 KCONFIG_AUTOHEADER
:= $(obj
)/config.h
27 KCONFIG_AUTOCONFIG
:= $(obj
)/auto.conf
28 KCONFIG_DEPENDENCIES
:= $(obj
)/auto.conf.cmd
29 KCONFIG_SPLITCONFIG
:= $(obj
)/config
/
30 KCONFIG_TRISTATE
:= $(obj
)/tristate.conf
31 KCONFIG_NEGATIVES
:= 1
33 KCONFIG_PACKAGE
:= CB.Config
34 KCONFIG_MAKEFILE_REAL ?
= $(objk
)/Makefile.real
36 COREBOOT_EXPORTS
+= KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG
37 COREBOOT_EXPORTS
+= KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE
38 COREBOOT_EXPORTS
+= KCONFIG_NEGATIVES KCONFIG_STRICT
39 COREBOOT_EXPORTS
+= KCONFIG_AUTOADS KCONFIG_PACKAGE
41 # Make does not offer a recursive wildcard function, so here's one:
42 rwildcard
=$(wildcard $1$2) $(foreach d
,$(wildcard $1*),$(call rwildcard
,$d/,$2))
43 SYMLINK_LIST
= $(call rwildcard
,site-local
/,symlink.txt
)
46 # directory containing the toplevel Makefile.inc
50 KBUILD_DEFCONFIG
:= configs
/defconfig
51 UNAME_RELEASE
:= $(shell uname
-r
)
52 HAVE_DOTCONFIG
:= $(wildcard $(DOTCONFIG
))
53 HAVE_KCONFIG_MAKEFILE_REAL
:= $(wildcard $(KCONFIG_MAKEFILE_REAL
))
54 MAKEFLAGS
+= -rR
--no-print-directory
56 # Make is silent per default, but 'make V=1' will show all compiler calls.
62 quiet_errors
:= 2>/dev
/null
66 # Disable implicit/built-in rules to make Makefile errors fail fast.
72 HOSTPKG_CONFIG ?
= pkg-config
73 COREBOOT_EXPORTS
+= HOSTPKG_CONFIG
75 PREPROCESS_ONLY
:= -E
-P
-x assembler-with-cpp
-undef
-I .
77 export $(COREBOOT_EXPORTS
)
82 @echo
'*** coreboot platform targets ***'
83 @echo
' Use "make [target] V=1" for extra build debug information'
84 @echo
' all - Build coreboot'
85 @echo
' clean - Remove coreboot build artifacts'
86 @echo
' distclean - Remove build artifacts and config files'
87 @echo
' sphinx - Build sphinx documentation for coreboot'
88 @echo
' sphinx-lint - Build sphinx documenttion for coreboot with warnings as errors'
89 @echo
' filelist - Show files used in current build'
90 @echo
' printall - print makefile info for debugging'
91 @echo
' gitconfig - set up git to submit patches to coreboot'
92 @echo
' ctags / ctags-project - make ctags file for all of coreboot or current board'
93 @echo
' cscope / cscope-project - make cscope.out file for coreboot or current board'
96 # This include must come _before_ the pattern rules below!
97 # Order _does_ matter for pattern rules.
98 include $(srck
)/Makefile.inc
100 # The cases where we don't need fully populated $(obj) lists:
101 # 1. when no .config exists
102 # 2. When no $(obj)/util/kconfig/Makefile.real exists and we're building tools
103 # 3. when make config (in any flavour) is run
104 # 4. when make distclean is run
105 # Don't waste time on reading all Makefile.incs in these cases
106 ifeq ($(strip $(HAVE_DOTCONFIG
)),)
109 ifeq ($(strip $(HAVE_KCONFIG_MAKEFILE_REAL
)),)
110 ifneq ($(MAKECMDGOALS
),tools
)
114 ifneq ($(MAKECMDGOALS
),)
115 ifneq ($(filter %config
%clean cross
% clang iasl lint
% help
% what-jenkins-does
,$(MAKECMDGOALS
)),)
118 ifneq ($(filter %clean lint
% help
% what-jenkins-does
,$(MAKECMDGOALS
)),)
124 ifneq ($(filter help
%, $(MAKECMDGOALS
)), )
128 ifneq ($(filter %-test %-tests
%coverage-report
, $(MAKECMDGOALS
)),)
129 ifneq ($(filter-out %-test %-tests
%coverage-report
, $(MAKECMDGOALS
)),)
130 $(error Cannot mix unit-tests targets with other targets
)
137 $(xcompile
): util
/xcompile
/xcompile
139 $< $(XGCCPATH
) > $@.tmp
140 \mv
-f
$@.tmp
$@
2> /dev
/null
143 ifeq ($(NOCOMPILE
),1)
144 # We also don't use .xcompile in the no-compile situations, so
145 # provide some reasonable defaults.
146 HOSTCC ?
= $(if
$(shell type gcc
2>/dev
/null
),gcc
,cc)
149 include $(TOPLEVEL
)/Makefile.inc
150 include $(TOPLEVEL
)/payloads
/Makefile.inc
151 include $(TOPLEVEL
)/util
/testing
/Makefile.inc
152 -include $(TOPLEVEL
)/site-local
/Makefile.inc
153 include $(TOPLEVEL
)/tests
/Makefile.inc
155 @echo
"Error: Trying to build, but NOCOMPILE is set." >&2
156 @echo
" Please file a bug with the following information:"
157 @echo
"- MAKECMDGOALS: $(MAKECMDGOALS)" >&2
158 @echo
"- HAVE_DOTCONFIG: $(HAVE_DOTCONFIG)" >&2
159 @echo
"- HAVE_KCONFIG_MAKEFILE_REAL: $(HAVE_KCONFIG_MAKEFILE_REAL)" >&2
164 ifneq ($(UNIT_TEST
),1)
168 # The toolchain requires xcompile to determine the ARCH_SUPPORTED, so we can't
169 # wait for make to generate the file.
170 $(if
$(wildcard $(xcompile
)),, $(shell \
171 mkdir
-p
$(dir $(xcompile
)) && \
172 util
/xcompile
/xcompile
$(XGCCPATH
) > $(xcompile
) ||
rm -f
$(xcompile
)))
176 ifneq ($(XCOMPILE_COMPLETE
),1)
177 $(shell rm -f
$(xcompile
))
178 $(error
$(xcompile
) deleted because it
's invalid. \
179 Restarting the build should fix that, or explain the problem)
182 # reproducible builds
186 ifneq ($(NOCOMPILE),1)
187 SOURCE_DATE_EPOCH := $(shell $(top)/util/genbuild_h/genbuild_h.sh . | sed -n 's
/^.
define COREBOOT_BUILD_EPOCH\
>.
*"\(.*\)".
*/\
1/p
')
189 # don't use COREBOOT_EXPORTS to ensure build steps outside the coreboot build system
191 export LANG LC_ALL TZ SOURCE_DATE_EPOCH
193 ifneq ($(UNIT_TEST
),1)
194 include toolchain.inc
197 strip_quotes
= $(strip $(subst ",,$(subst \",,$(1))))
198 # fix makefile syntax highlighting after strip macro \" "))
200 ifneq ($(NOCOMPILE
),1)
201 $(shell rm -f
$(CCACHE_STATSLOG
))
204 # The primary target needs to be here before we include the
207 real-all
: real-target
209 # must come rather early
214 $(KCONFIG_AUTOHEADER
): $(KCONFIG_CONFIG
) $(objutil
)/kconfig
/conf
218 $(KCONFIG_AUTOCONFIG
): $(KCONFIG_AUTOHEADER
)
221 $(KCONFIG_AUTOADS
): $(KCONFIG_CONFIG
) $(KCONFIG_AUTOHEADER
) $(objutil
)/kconfig
/toada
222 $(objutil
)/kconfig
/toada CB.Config
<$< >$@
224 $(obj
)/%/$(notdir $(KCONFIG_AUTOADS
)): $(KCONFIG_AUTOADS
)
227 # Add a new class of source/object files to the build system
229 $(eval
$(1)-srcs
:=) \
230 $(eval
$(1)-objs
:=) \
231 $(eval classes
+=$(1))
233 # Special classes are managed types with special behaviour
234 # On parse time, for each entry in variable $(1)-y
235 # a handler $(1)-handler is executed with the arguments:
236 # * $(1): directory the parser is in
237 # * $(2): current entry
240 $(eval special-classes
+=$(1))
242 # Converts one or more source file paths to their corresponding build/ paths.
243 # Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
246 # $2 file path (list)
248 $(patsubst $(obj
)/%,$(obj
)/$(1)/%,\
249 $(patsubst $(obj
)/$(1)/%,$(obj
)/%,\
250 $(patsubst 3rdparty
/%,$(obj
)/%,\
251 $(patsubst src
/%,$(obj
)/%,\
252 $(patsubst %.ads
,%.o
,\
253 $(patsubst %.adb
,%.o
,\
256 $(subst .
$(1),,$(2))))))))))
258 # Converts one or more source file paths to the corresponding build/ paths
259 # of their Ada library information (.ali) files.
261 # $2 file path (list)
263 $(patsubst $(obj
)/%,$(obj
)/$(1)/%,\
264 $(patsubst $(obj
)/$(1)/%,$(obj
)/%,\
265 $(patsubst 3rdparty
/%,$(obj
)/%,\
266 $(patsubst src
/%,$(obj
)/%,\
267 $(patsubst %.ads
,%.ali
,\
268 $(patsubst %.adb
,%.ali
,\
270 $(filter %.ads
%.adb
,$(2)))))))))
272 # Clean -y variables, include Makefile.inc
273 # Add paths to files in X-y to X-srcs
274 # Add subdirs-y to subdirs
276 $(foreach class
,classes subdirs
$(classes
) $(special-classes
), $(eval
$(class
)-y
:=)) \
277 $(eval
-include $(1)) \
278 $(foreach class
,$(classes-y
), $(call add-class
,$(class
))) \
279 $(foreach special
,$(special-classes
), \
280 $(foreach item
,$($(special
)-y
), $(call
$(special
)-handler
,$(dir $(1)),$(item
)))) \
281 $(foreach class
,$(classes
), \
282 $(eval
$(class
)-srcs
+= \
283 $$(subst $(absobj
)/,$(obj
)/, \
285 $$(abspath
$$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class
)-y
)))))))) \
286 $(eval subdirs
+=$$(subst $(CURDIR
)/,,$$(wildcard $$(abspath
$$(addprefix $(dir $(1)),$$(subdirs-y
))))))
288 # For each path in $(subdirs) call includemakefiles
289 # Repeat until subdirs is empty
291 $(eval cursubdirs
:=$(subdirs
)) \
293 $(foreach dir,$(cursubdirs
), \
294 $(eval
$(call includemakefiles
,$(dir)/Makefile.inc
))) \
295 $(if
$(subdirs
),$(eval
$(call evaluate_subdirs
)))
297 # collect all object files eligible for building
301 # Don't iterate through Makefile.incs under src/ when building tests
302 ifneq ($(UNIT_TEST
),1)
303 $(eval
$(call evaluate_subdirs
))
305 include $(TOPLEVEL
)/tests
/Makefile.inc
308 ifeq ($(FAILBUILD
),1)
309 $(error cannot continue build
)
312 # Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
313 $(eval
$(postinclude-hooks
))
315 # Eliminate duplicate mentions of source files in a class
316 $(foreach class
,$(classes
),$(eval
$(class
)-srcs
:=$(sort $($(class
)-srcs
))))
318 # Build Kconfig .ads if necessary
319 ifeq ($(CONFIG_ROMSTAGE_ADA
),y
)
320 romstage-srcs
+= $(obj
)/romstage
/$(notdir $(KCONFIG_AUTOADS
))
322 ifeq ($(CONFIG_RAMSTAGE_ADA
),y
)
323 ramstage-srcs
+= $(obj
)/ramstage
/$(notdir $(KCONFIG_AUTOADS
))
326 # To track dependencies, we need all Ada specification (.ads) files in
327 # *-srcs. Extract / filter all specification files that have a matching
328 # body (.adb) file here (specifications without a body are valid sources
330 $(foreach class
,$(classes
),$(eval
$(class
)-extra-specs
:= \
332 $(addprefix %/,$(patsubst %.adb
,%.ads
,$(notdir $(filter %.adb
,$($(class
)-srcs
))))), \
333 $(filter %.ads
,$($(class
)-srcs
)))))
334 $(foreach class
,$(classes
),$(eval
$(class
)-srcs
:= \
335 $(filter-out $($(class
)-extra-specs
),$($(class
)-srcs
))))
337 $(foreach class
,$(classes
),$(eval
$(class
)-objs
:=$(call src-to-obj
,$(class
),$($(class
)-srcs
))))
338 $(foreach class
,$(classes
),$(eval
$(class
)-alis
:=$(call src-to-ali
,$(class
),$($(class
)-srcs
))))
341 $(foreach class
,$(classes
),$(eval
$(class
)-ada-dirs
:=$(sort $(dir $(filter %.ads
%.adb
,$($(class
)-srcs
)) $($(class
)-extra-specs
)))))
343 # Save all objs before processing them (for dependency inclusion)
344 originalobjs
:=$(foreach var
, $(addsuffix -objs
,$(classes
)), $($(var
)))
346 # Call post-processors if they're defined
347 $(foreach class
,$(classes
),\
348 $(if
$(value
$(class
)-postprocess
),$(eval
$(call
$(class
)-postprocess
,$($(class
)-objs
)))))
350 allsrcs
:=$(foreach var
, $(addsuffix -srcs
,$(classes
)), $($(var
)))
351 allobjs
:=$(foreach var
, $(addsuffix -objs
,$(classes
)), $($(var
)))
352 alldirs
:=$(sort $(abspath
$(dir $(allobjs
))))
354 # Reads dependencies from an Ada library information (.ali) file
355 # Only basenames (with suffix) are preserved so we have to look the
356 # paths up in $($(stage)-srcs).
359 create_ada_deps
=$$(if
$(2),\
362 $$(addprefix %/,$$(shell sed
-ne
's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev
/null
)), \
363 $$($(1)-srcs
) $$($(1)-extra-specs
)))
365 # macro to define template macros that are used by use_template macro
366 define create_cc_template
368 # $2 source suffix (c, S, ld, ...)
369 # $3 additional compiler flags
370 # $4 additional dependencies
371 ifn
$(EMPTY
)def
$(1)-objs_
$(2)_template
372 de
$(EMPTY
)fine
$(1)-objs_
$(2)_template
373 ifn
$(EMPTY
)eq
($(filter ads adb
,$(2)),)
374 $$(call src-to-obj
,$1,$$(1).
$2): $$(1).
$2 $$(call create_ada_deps
,$1,$$(call src-to-ali
,$1,$$(1).
$2)) $(4)
375 @printf
" GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
377 $$$$(ADAFLAGS_
$(1)) $$$$(addprefix -I
,$$$$($(1)-ada-dirs
)) \
378 $(3) -c
-o
$$$$@
$$$$<
380 $$(call src-to-obj
,$1,$$(1).
$2): $$(1).
$2 $(KCONFIG_AUTOHEADER
) $(4)
381 @printf
" CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
383 -MMD
$$$$(CPPFLAGS_
$(1)) $$$$(CFLAGS_
$(1)) -MT
$$$$(@
) \
384 $(3) -c
-o
$$$$@
$$$$<
390 filetypes-of-class
=$(subst .
,,$(sort $(suffix $($(1)-srcs
))))
391 $(foreach class
,$(classes
), \
392 $(foreach type
,$(call filetypes-of-class
,$(class
)), \
393 $(eval
$(class
)-$(type
)-ccopts
+= $(generic-
$(type
)-ccopts
) $($(class
)-generic-ccopts
)) \
394 $(if
$(generic-objs_
$(type
)_template_gen
),$(eval
$(call generic-objs_
$(type
)_template_gen
,$(class
))),\
395 $(eval
$(call create_cc_template
,$(class
),$(type
),$($(class
)-$(type
)-ccopts
),$($(class
)-$(type
)-deps
))))))
397 foreach-src
=$(foreach file
,$($(1)-srcs
),$(eval
$(call
$(1)-objs_
$(subst .
,,$(suffix $(file
)))_template
,$(basename $(file
)))))
398 $(eval
$(foreach class
,$(classes
),$(call foreach-src
,$(class
))))
400 # To supported complex package initializations, we need to call the
401 # emitted code explicitly. gnatbind gathers all the calls for us
402 # and exports them as a procedure $(stage)_adainit(). Every stage that
403 # uses Ada code has to call it!
404 define gnatbind_template
406 $$(obj
)/$(1)/b__
$(1).adb
: $$$$(filter-out $$(obj
)/$(1)/b__
$(1).ali
,$$$$($(1)-alis
))
407 @printf
" BIND $$(subst $$(obj)/,,$$@)\n"
408 # We have to give gnatbind a simple filename (without leading
409 # path components) so just cd there.
411 $$(GNATBIND_
$(1)) -a
-n \
412 --RTS
=$$(absobj
)/libgnat-
$$(ARCH-
$(1)-y
)/ \
413 -L
$(1)_ada
-o
$$(notdir $$@
) \
414 $$(subst $$(dir $$@
),,$$^
)
415 $$(obj
)/$(1)/b__
$(1).o
: $$(obj
)/$(1)/b__
$(1).adb
416 @printf
" GCC $$(subst $$(obj)/,,$$@)\n"
417 $(GCC_
$(1)) $$(ADAFLAGS_
$(1)) -c
-o
$$@
$$<
418 $(1)-objs
+= $$(obj
)/$(1)/b__
$(1).o
419 $($(1)-alis
): %.ali
: %.o
;
422 $(eval
$(foreach class
,$(filter-out libgnat-
%,$(classes
)), \
423 $(if
$($(class
)-alis
),$(call gnatbind_template
,$(class
)))))
425 DEPENDENCIES
+= $(addsuffix .d
,$(basename $(allobjs
)))
426 -include $(DEPENDENCIES
)
429 @
$(foreach class
,$(classes
), echo
$(class
)-objs
: $($(class
)-objs
) | tr
' ' '\n'; echo
; )
430 @echo alldirs
: $(alldirs
) | tr
' ' '\n'; echo
431 @echo allsrcs
: $(allsrcs
) | tr
' ' '\n'; echo
432 @echo DEPENDENCIES
: $(DEPENDENCIES
) | tr
' ' '\n'; echo
433 @
$(foreach class
,$(special-classes
),echo
$(class
):'$($(class))' | tr
' ' '\n'; echo
; )
437 $(shell mkdir
-p
$(KCONFIG_SPLITCONFIG
) $(objk
)/lxdialog
$(additional-dirs
) $(alldirs
))
440 $(obj
)/project_filelist.txt
:
441 if
[ -z
"$(wildcard $(obj)/coreboot.rom)" ]; then \
442 echo
"*** Error: Project must be built before generating file list ***"; \
445 find
$(obj
) -path
"$(obj)/util" -prune
-o
-path
"$(obj)/external" -prune
-o
-name
"*.d" -exec cat
{} \
; | \
446 sed
"s|$(top)/||" | sed
's/[:\\]/ /g' | sed
's/ /\n/g' |
sort | uniq | \
447 grep
-v
'\.o$$' > $(obj
)/project_filelist.txt
449 filelist
: $(obj
)/project_filelist.txt
450 printf
"\nFiles used in build:\n"
451 cat
$(obj
)/project_filelist.txt
453 #works with either exuberant ctags or ctags.emacs
454 ctags-project
: clean-ctags
$(obj
)/project_filelist.txt
455 cat
$(obj
)/project_filelist.txt | \
458 cscope-project
: clean-cscope
$(obj
)/project_filelist.txt
459 cat
$(obj
)/project_filelist.txt | xargs cscope
-b
465 $(MAKE
) -C Documentation
-f Makefile.sphinx html
468 $(MAKE
) SPHINXOPTS
=-W
-C Documentation
-f Makefile.sphinx html
471 @echo
"Creating Symbolic Links.."; \
472 for link in
$(SYMLINK_LIST
); do \
473 SYMLINK
=`cat $$link`; \
474 REALPATH
=`realpath $$link`; \
475 if
[ -L
"$$SYMLINK" ]; then \
477 elif
[ ! -e
"$$SYMLINK" ]; then \
478 echo
-e
"\tLINK $$SYMLINK -> $$(dirname $$REALPATH)"; \
479 ln
-s
$$(dirname
$$REALPATH) $$SYMLINK; \
481 echo
-e
"\tFAILED: $$SYMLINK exists"; \
486 @echo
"Deleting symbolic link";\
487 EXISTING_SYMLINKS
=`find -L ./src -xtype l | grep -v 3rdparty`; \
488 for link in
$$EXISTING_SYMLINKS; do \
489 echo
-e
"\tUNLINK $$link"; \
494 rm -rf
$(obj
) .xcompile
496 clean: clean-for-update clean-utils clean-payloads
506 $(foreach tool
, $(TOOLLIST
), \
507 $(MAKE
) -C util
/$(tool
) clean MFLAGS
= MAKEFLAGS
= ;)
510 $(foreach tool
, $(TOOLLIST
), \
511 $(MAKE
) -C util
/$(tool
) distclean MFLAGS
= MAKEFLAGS
= ; \
512 rm -f
/util
/$(tool
)/junit.xml
;)
514 distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
515 rm -f .config .config.old ..config.tmp
* .kconfig.d .tmpconfig
* .ccwrap .xcompile
516 rm -rf coreboot-builds coreboot-builds-chromeos
517 rm -f abuild
*.xml junit.xml
* util
/lint
/junit.xml
519 .PHONY
: $(PHONY
) clean clean-for-update clean-cscope cscope
distclean sphinx sphinx-lint
520 .PHONY
: ctags-project cscope-project clean-ctags symlink clean-symlink