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
35 COREBOOT_EXPORTS
+= KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG
36 COREBOOT_EXPORTS
+= KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE
37 COREBOOT_EXPORTS
+= KCONFIG_NEGATIVES KCONFIG_STRICT
38 COREBOOT_EXPORTS
+= KCONFIG_AUTOADS KCONFIG_PACKAGE
40 # directory containing the toplevel Makefile.inc
44 KBUILD_DEFCONFIG
:= configs
/defconfig
45 UNAME_RELEASE
:= $(shell uname
-r
)
46 HAVE_DOTCONFIG
:= $(wildcard $(DOTCONFIG
))
47 MAKEFLAGS
+= -rR
--no-print-directory
49 # Make is silent per default, but 'make V=1' will show all compiler calls.
55 quiet_errors
:= 2>/dev
/null
59 # Disable implicit/built-in rules to make Makefile errors fail fast.
65 PREPROCESS_ONLY
:= -E
-P
-x assembler-with-cpp
-undef
-I .
67 export $(COREBOOT_EXPORTS
)
72 @echo
'*** coreboot platform targets ***'
73 @echo
' Use "make [target] V=1" for extra build debug information'
74 @echo
' all - Build coreboot'
75 @echo
' clean - Remove coreboot build artifacts'
76 @echo
' distclean - Remove build artifacts and config files'
77 @echo
' sphinx - Build sphinx documentation for coreboot'
78 @echo
' sphinx-lint - Build sphinx documenttion for coreboot with warnings as errors'
79 @echo
' filelist - Show files used in current build'
80 @echo
' printall - print makefile info for debugging'
81 @echo
' gitconfig - set up git to submit patches to coreboot'
82 @echo
' ctags / ctags-project - make ctags file for all of coreboot or current board'
83 @echo
' cscope / cscope-project - make cscope.out file for coreboot or current board'
86 # This include must come _before_ the pattern rules below!
87 # Order _does_ matter for pattern rules.
88 include $(srck
)/Makefile.inc
90 # Three cases where we don't need fully populated $(obj) lists:
91 # 1. when no .config exists
92 # 2. when make config (in any flavour) is run
93 # 3. when make distclean is run
94 # Don't waste time on reading all Makefile.incs in these cases
95 ifeq ($(strip $(HAVE_DOTCONFIG
)),)
98 ifneq ($(MAKECMDGOALS
),)
99 ifneq ($(filter %config
%clean cross
% clang iasl lint
% help
% what-jenkins-does
,$(MAKECMDGOALS
)),)
102 ifneq ($(filter %clean lint
% help
% what-jenkins-does
,$(MAKECMDGOALS
)),)
108 ifneq ($(filter help
%, $(MAKECMDGOALS
)), )
112 ifneq ($(filter %-test %-tests
%coverage-report
, $(MAKECMDGOALS
)),)
113 ifneq ($(filter-out %-test %-tests
%coverage-report
, $(MAKECMDGOALS
)),)
114 $(error Cannot mix unit-tests targets with other targets
)
121 $(xcompile
): util
/xcompile
/xcompile
123 $< $(XGCCPATH
) > $@.tmp
124 \mv
-f
$@.tmp
$@
2> /dev
/null
127 ifeq ($(NOCOMPILE
),1)
128 # We also don't use .xcompile in the no-compile situations, so
129 # provide some reasonable defaults.
130 HOSTCC ?
= $(if
$(shell type gcc
2>/dev
/null
),gcc
,cc)
133 include $(TOPLEVEL
)/Makefile.inc
134 include $(TOPLEVEL
)/payloads
/Makefile.inc
135 include $(TOPLEVEL
)/util
/testing
/Makefile.inc
136 -include $(TOPLEVEL
)/site-local
/Makefile.inc
137 include $(TOPLEVEL
)/tests
/Makefile.inc
139 @echo
"Error: Expected config file ($(DOTCONFIG)) not present." >&2
140 @echo
"Please specify a config file or run 'make menuconfig' to" >&2
141 @echo
"generate a new config file." >&2
145 ifneq ($(UNIT_TEST
),1)
149 # The toolchain requires xcompile to determine the ARCH_SUPPORTED, so we can't
150 # wait for make to generate the file.
151 $(if
$(wildcard $(xcompile
)),, $(shell \
152 mkdir
-p
$(dir $(xcompile
)) && \
153 util
/xcompile
/xcompile
$(XGCCPATH
) > $(xcompile
) ||
rm -f
$(xcompile
)))
157 ifneq ($(XCOMPILE_COMPLETE
),1)
158 $(shell rm -f
$(xcompile
))
159 $(error
$(xcompile
) deleted because it
's invalid. \
160 Restarting the build should fix that, or explain the problem)
163 # reproducible builds
167 ifneq ($(NOCOMPILE),1)
168 SOURCE_DATE_EPOCH := $(shell $(top)/util/genbuild_h/genbuild_h.sh . | sed -n 's
/^.
define COREBOOT_BUILD_EPOCH\
>.
*"\(.*\)".
*/\
1/p
')
170 # don't use COREBOOT_EXPORTS to ensure build steps outside the coreboot build system
172 export LANG LC_ALL TZ SOURCE_DATE_EPOCH
174 ifneq ($(CONFIG_MMX
),y
)
175 CFLAGS_x86_32
+= -mno-mmx
178 ifneq ($(UNIT_TEST
),1)
179 include toolchain.inc
182 strip_quotes
= $(strip $(subst ",,$(subst \",,$(1))))
183 # fix makefile syntax highlighting after strip macro \" "))
185 # The primary target needs to be here before we include the
188 real-all
: real-target
190 # must come rather early
195 $(KCONFIG_AUTOHEADER
): $(KCONFIG_CONFIG
) $(objutil
)/kconfig
/conf
199 $(KCONFIG_AUTOCONFIG
): $(KCONFIG_AUTOHEADER
)
202 $(KCONFIG_AUTOADS
): $(KCONFIG_CONFIG
) $(KCONFIG_AUTOHEADER
) $(objutil
)/kconfig
/toada
203 $(objutil
)/kconfig
/toada CB.Config
<$< >$@
205 $(obj
)/%/$(notdir $(KCONFIG_AUTOADS
)): $(KCONFIG_AUTOADS
)
208 # Add a new class of source/object files to the build system
210 $(eval
$(1)-srcs
:=) \
211 $(eval
$(1)-objs
:=) \
212 $(eval classes
+=$(1))
214 # Special classes are managed types with special behaviour
215 # On parse time, for each entry in variable $(1)-y
216 # a handler $(1)-handler is executed with the arguments:
217 # * $(1): directory the parser is in
218 # * $(2): current entry
221 $(eval special-classes
+=$(1))
223 # Converts one or more source file paths to their corresponding build/ paths.
224 # Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
227 # $2 file path (list)
229 $(patsubst $(obj
)/%,$(obj
)/$(1)/%,\
230 $(patsubst $(obj
)/$(1)/%,$(obj
)/%,\
231 $(patsubst 3rdparty
/%,$(obj
)/%,\
232 $(patsubst src
/%,$(obj
)/%,\
233 $(patsubst %.ads
,%.o
,\
234 $(patsubst %.adb
,%.o
,\
237 $(subst .
$(1),,$(2))))))))))
239 # Converts one or more source file paths to the corresponding build/ paths
240 # of their Ada library information (.ali) files.
242 # $2 file path (list)
244 $(patsubst $(obj
)/%,$(obj
)/$(1)/%,\
245 $(patsubst $(obj
)/$(1)/%,$(obj
)/%,\
246 $(patsubst 3rdparty
/%,$(obj
)/%,\
247 $(patsubst src
/%,$(obj
)/%,\
248 $(patsubst %.ads
,%.ali
,\
249 $(patsubst %.adb
,%.ali
,\
251 $(filter %.ads
%.adb
,$(2)))))))))
253 # Clean -y variables, include Makefile.inc
254 # Add paths to files in X-y to X-srcs
255 # Add subdirs-y to subdirs
257 $(foreach class
,classes subdirs
$(classes
) $(special-classes
), $(eval
$(class
)-y
:=)) \
258 $(eval
-include $(1)) \
259 $(foreach class
,$(classes-y
), $(call add-class
,$(class
))) \
260 $(foreach special
,$(special-classes
), \
261 $(foreach item
,$($(special
)-y
), $(call
$(special
)-handler
,$(dir $(1)),$(item
)))) \
262 $(foreach class
,$(classes
), \
263 $(eval
$(class
)-srcs
+= \
264 $$(subst $(absobj
)/,$(obj
)/, \
266 $$(abspath
$$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class
)-y
)))))))) \
267 $(eval subdirs
+=$$(subst $(CURDIR
)/,,$$(wildcard $$(abspath
$$(addprefix $(dir $(1)),$$(subdirs-y
))))))
269 # For each path in $(subdirs) call includemakefiles
270 # Repeat until subdirs is empty
272 $(eval cursubdirs
:=$(subdirs
)) \
274 $(foreach dir,$(cursubdirs
), \
275 $(eval
$(call includemakefiles
,$(dir)/Makefile.inc
))) \
276 $(if
$(subdirs
),$(eval
$(call evaluate_subdirs
)))
278 # collect all object files eligible for building
282 # Don't iterate through Makefile.incs under src/ when building tests
283 ifneq ($(UNIT_TEST
),1)
284 $(eval
$(call evaluate_subdirs
))
286 include $(TOPLEVEL
)/tests
/Makefile.inc
289 ifeq ($(FAILBUILD
),1)
290 $(error cannot continue build
)
293 # Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
294 $(eval
$(postinclude-hooks
))
296 # Eliminate duplicate mentions of source files in a class
297 $(foreach class
,$(classes
),$(eval
$(class
)-srcs
:=$(sort $($(class
)-srcs
))))
299 # Build Kconfig .ads if necessary
300 ifeq ($(CONFIG_RAMSTAGE_ADA
),y
)
301 ramstage-srcs
+= $(obj
)/ramstage
/$(notdir $(KCONFIG_AUTOADS
))
304 # To track dependencies, we need all Ada specification (.ads) files in
305 # *-srcs. Extract / filter all specification files that have a matching
306 # body (.adb) file here (specifications without a body are valid sources
308 $(foreach class
,$(classes
),$(eval
$(class
)-extra-specs
:= \
310 $(addprefix %/,$(patsubst %.adb
,%.ads
,$(notdir $(filter %.adb
,$($(class
)-srcs
))))), \
311 $(filter %.ads
,$($(class
)-srcs
)))))
312 $(foreach class
,$(classes
),$(eval
$(class
)-srcs
:= \
313 $(filter-out $($(class
)-extra-specs
),$($(class
)-srcs
))))
315 $(foreach class
,$(classes
),$(eval
$(class
)-objs
:=$(call src-to-obj
,$(class
),$($(class
)-srcs
))))
316 $(foreach class
,$(classes
),$(eval
$(class
)-alis
:=$(call src-to-ali
,$(class
),$($(class
)-srcs
))))
319 $(foreach class
,$(classes
),$(eval
$(class
)-ada-dirs
:=$(sort $(dir $(filter %.ads
%.adb
,$($(class
)-srcs
)) $($(class
)-extra-specs
)))))
321 # Save all objs before processing them (for dependency inclusion)
322 originalobjs
:=$(foreach var
, $(addsuffix -objs
,$(classes
)), $($(var
)))
324 # Call post-processors if they're defined
325 $(foreach class
,$(classes
),\
326 $(if
$(value
$(class
)-postprocess
),$(eval
$(call
$(class
)-postprocess
,$($(class
)-objs
)))))
328 allsrcs
:=$(foreach var
, $(addsuffix -srcs
,$(classes
)), $($(var
)))
329 allobjs
:=$(foreach var
, $(addsuffix -objs
,$(classes
)), $($(var
)))
330 alldirs
:=$(sort $(abspath
$(dir $(allobjs
))))
332 # Reads dependencies from an Ada library information (.ali) file
333 # Only basenames (with suffix) are preserved so we have to look the
334 # paths up in $($(stage)-srcs).
337 create_ada_deps
=$$(if
$(2),\
340 $$(addprefix %/,$$(shell sed
-ne
's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev
/null
)), \
341 $$($(1)-srcs
) $$($(1)-extra-specs
)))
343 # macro to define template macros that are used by use_template macro
344 define create_cc_template
346 # $2 source suffix (c, S, ld, ...)
347 # $3 additional compiler flags
348 # $4 additional dependencies
349 ifn
$(EMPTY
)def
$(1)-objs_
$(2)_template
350 de
$(EMPTY
)fine
$(1)-objs_
$(2)_template
351 ifn
$(EMPTY
)eq
($(filter ads adb
,$(2)),)
352 $$(call src-to-obj
,$1,$$(1).
$2): $$(1).
$2 $$(call create_ada_deps
,$1,$$(call src-to-ali
,$1,$$(1).
$2)) $(4)
353 @printf
" GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
355 $$$$(ADAFLAGS_
$(1)) $$$$(addprefix -I
,$$$$($(1)-ada-dirs
)) \
356 $(3) -c
-o
$$$$@
$$$$<
358 $$(call src-to-obj
,$1,$$(1).
$2): $$(1).
$2 $(KCONFIG_AUTOHEADER
) $(4)
359 @printf
" CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
361 -MMD
$$$$(CPPFLAGS_
$(1)) $$$$(CFLAGS_
$(1)) -MT
$$$$(@
) \
362 $(3) -c
-o
$$$$@
$$$$<
368 filetypes-of-class
=$(subst .
,,$(sort $(suffix $($(1)-srcs
))))
369 $(foreach class
,$(classes
), \
370 $(foreach type
,$(call filetypes-of-class
,$(class
)), \
371 $(eval
$(class
)-$(type
)-ccopts
+= $(generic-
$(type
)-ccopts
) $($(class
)-generic-ccopts
)) \
372 $(if
$(generic-objs_
$(type
)_template_gen
),$(eval
$(call generic-objs_
$(type
)_template_gen
,$(class
))),\
373 $(eval
$(call create_cc_template
,$(class
),$(type
),$($(class
)-$(type
)-ccopts
),$($(class
)-$(type
)-deps
))))))
375 foreach-src
=$(foreach file
,$($(1)-srcs
),$(eval
$(call
$(1)-objs_
$(subst .
,,$(suffix $(file
)))_template
,$(basename $(file
)))))
376 $(eval
$(foreach class
,$(classes
),$(call foreach-src
,$(class
))))
378 # To supported complex package initializations, we need to call the
379 # emitted code explicitly. gnatbind gathers all the calls for us
380 # and exports them as a procedure $(stage)_adainit(). Every stage that
381 # uses Ada code has to call it!
382 define gnatbind_template
384 $$(obj
)/$(1)/b__
$(1).adb
: $$$$(filter-out $$(obj
)/$(1)/b__
$(1).ali
,$$$$($(1)-alis
))
385 @printf
" BIND $$(subst $$(obj)/,,$$@)\n"
386 # We have to give gnatbind a simple filename (without leading
387 # path components) so just cd there.
389 $$(GNATBIND_
$(1)) -a
-n \
390 --RTS
=$$(absobj
)/libgnat-
$$(ARCH-
$(1)-y
)/ \
391 -L
$(1)_ada
-o
$$(notdir $$@
) \
392 $$(subst $$(dir $$@
),,$$^
)
393 $$(obj
)/$(1)/b__
$(1).o
: $$(obj
)/$(1)/b__
$(1).adb
394 @printf
" GCC $$(subst $$(obj)/,,$$@)\n"
395 $(GCC_
$(1)) $$(ADAFLAGS_
$(1)) -c
-o
$$@
$$<
396 $(1)-objs
+= $$(obj
)/$(1)/b__
$(1).o
397 $($(1)-alis
): %.ali
: %.o
;
400 $(eval
$(foreach class
,$(filter-out libgnat-
%,$(classes
)), \
401 $(if
$($(class
)-alis
),$(call gnatbind_template
,$(class
)))))
403 DEPENDENCIES
+= $(addsuffix .d
,$(basename $(allobjs
)))
404 -include $(DEPENDENCIES
)
407 @
$(foreach class
,$(classes
), echo
$(class
)-objs
: $($(class
)-objs
) | tr
' ' '\n'; echo
; )
408 @echo alldirs
: $(alldirs
) | tr
' ' '\n'; echo
409 @echo allsrcs
: $(allsrcs
) | tr
' ' '\n'; echo
410 @echo DEPENDENCIES
: $(DEPENDENCIES
) | tr
' ' '\n'; echo
411 @
$(foreach class
,$(special-classes
),echo
$(class
):'$($(class))' | tr
' ' '\n'; echo
; )
415 $(shell mkdir
-p
$(KCONFIG_SPLITCONFIG
) $(objk
)/lxdialog
$(additional-dirs
) $(alldirs
))
418 $(obj
)/project_filelist.txt
:
419 if
[ -z
"$(wildcard $(obj)/coreboot.rom)" ]; then \
420 echo
"*** Error: Project must be built before generating file list ***"; \
423 find
$(obj
) -path
"$(obj)/util" -prune
-o
-name
"*.d" -exec cat
{} \
; | \
424 sed
"s|$(top)/||" | sed
's/[:\\]/ /g' | sed
's/ /\n/g' |
sort | uniq | \
425 grep
-v
'\.o$$' > $(obj
)/project_filelist.txt
427 filelist
: $(obj
)/project_filelist.txt
428 printf
"\nFiles used in build:\n"
429 cat
$(obj
)/project_filelist.txt
431 #works with either exuberant ctags or ctags.emacs
432 ctags-project
: clean-ctags
$(obj
)/project_filelist.txt
433 cat
$(obj
)/project_filelist.txt | \
436 cscope-project
: clean-cscope
$(obj
)/project_filelist.txt
437 cat
$(obj
)/project_filelist.txt | xargs cscope
-b
443 $(MAKE
) -C Documentation
-f Makefile.sphinx html
446 $(MAKE
) SPHINXOPTS
=-W
-C Documentation
-f Makefile.sphinx html
449 rm -rf
$(obj
) .xcompile
451 clean: clean-for-update clean-utils clean-payloads
461 $(foreach tool
, $(TOOLLIST
), \
462 $(MAKE
) -C util
/$(tool
) clean MFLAGS
= MAKEFLAGS
= ;)
465 $(foreach tool
, $(TOOLLIST
), \
466 $(MAKE
) -C util
/$(tool
) distclean MFLAGS
= MAKEFLAGS
= ; \
467 rm -f
/util
/$(tool
)/junit.xml
;)
469 distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
470 rm -f .config .config.old ..config.tmp
* .kconfig.d .tmpconfig
* .ccwrap .xcompile
471 rm -rf coreboot-builds coreboot-builds-chromeos
472 rm -f abuild
*.xml junit.xml
* util
/lint
/junit.xml
474 .PHONY
: $(PHONY
) clean clean-for-update clean-cscope cscope
distclean sphinx sphinx-lint
475 .PHONY
: ctags-project cscope-project clean-ctags