lib/device_tree.c: Fix wrong check for FDT validity
[coreboot2.git] / Makefile
blobfddcc5c55df21185606916e12597100051ad8c19
1 ## SPDX-License-Identifier: BSD-3-Clause
3 ifneq ($(words $(CURDIR)),1)
4 $(error Error: Path to the main directory cannot contain spaces)
5 endif
6 top := $(CURDIR)
7 src := src
8 srck := $(top)/util/kconfig
9 obj ?= build
10 override obj := $(subst $(top)/,,$(abspath $(obj)))
11 xcompile ?= $(obj)/xcompile
12 objutil ?= $(obj)/util
13 objk := $(objutil)/kconfig
14 absobj := $(abspath $(obj))
16 additional-dirs :=
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_RUSTCCFG := $(obj)/cb-config.rustcfg
27 KCONFIG_AUTOHEADER := $(obj)/config.h
28 KCONFIG_AUTOCONFIG := $(obj)/auto.conf
29 KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd
30 KCONFIG_SPLITCONFIG := $(obj)/config/
31 KCONFIG_TRISTATE := $(obj)/tristate.conf
32 KCONFIG_NEGATIVES := 1
33 KCONFIG_WERROR := 1
34 KCONFIG_WARN_UNKNOWN_SYMBOLS := 1
35 KCONFIG_PACKAGE := CB.Config
36 KCONFIG_MAKEFILE_REAL ?= $(objk)/Makefile.real
38 COREBOOT_EXPORTS += KCONFIG_CONFIG KCONFIG_AUTOHEADER KCONFIG_AUTOCONFIG
39 COREBOOT_EXPORTS += KCONFIG_DEPENDENCIES KCONFIG_SPLITCONFIG KCONFIG_TRISTATE
40 COREBOOT_EXPORTS += KCONFIG_NEGATIVES
41 ifeq ($(filter %config,$(MAKECMDGOALS)),)
42 COREBOOT_EXPORTS += KCONFIG_WERROR
43 endif
44 COREBOOT_EXPORTS += KCONFIG_WARN_UNKNOWN_SYMBOLS
45 COREBOOT_EXPORTS += KCONFIG_AUTOADS KCONFIG_PACKAGE
46 COREBOOT_EXPORTS += KCONFIG_RUSTCCFG
48 # Make does not offer a recursive wildcard function, so here's one:
49 rwildcard=$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2))
50 SYMLINK_LIST = $(call rwildcard,site-local/,symlink.txt)
53 # Directory containing the toplevel Makefile.mk
54 TOPLEVEL := .
56 CONFIG_SHELL := sh
57 KBUILD_DEFCONFIG := configs/defconfig
58 UNAME_RELEASE := $(shell uname -r)
59 HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
60 HAVE_KCONFIG_MAKEFILE_REAL := $(wildcard $(KCONFIG_MAKEFILE_REAL))
61 MAKEFLAGS += -rR --no-print-directory
63 # Make is silent per default, but 'make V=1' will show all compiler calls.
64 Q:=@
65 ifneq ($(V),1)
66 ifneq ($(Q),)
67 .SILENT:
68 MAKEFLAGS += -s
69 quiet_errors := 2>/dev/null
70 endif
71 endif
73 # Disable implicit/built-in rules to make Makefile errors fail fast.
74 .SUFFIXES:
76 HOSTCFLAGS := -g
77 HOSTCXXFLAGS := -g
79 HOSTPKG_CONFIG ?= pkg-config
80 COREBOOT_EXPORTS += HOSTPKG_CONFIG
82 PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I .
84 export $(COREBOOT_EXPORTS)
86 all: real-all
88 help_coreboot help::
89 @echo '*** coreboot platform targets ***'
90 @echo ' Use "make [target] V=1" for extra build debug information'
91 @echo ' all - Build coreboot'
92 @echo ' clean - Remove coreboot build artifacts'
93 @echo ' distclean - Remove build artifacts and config files'
94 @echo ' sphinx - Build sphinx documentation for coreboot'
95 @echo ' sphinx-lint - Build sphinx documentation for coreboot with warnings as errors'
96 @echo ' filelist - Show files used in current build'
97 @echo ' printall - print makefile info for debugging'
98 @echo ' gitconfig - set up git to submit patches to coreboot'
99 @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
103 # This include must come _before_ the pattern rules below!
104 # Order _does_ matter for pattern rules.
105 include $(srck)/Makefile.mk
107 # The cases where we don't need fully populated $(obj) lists:
108 # 1. when no .config exists
109 # 2. When no $(obj)/util/kconfig/Makefile.real exists and we're building tools
110 # 3. when make config (in any flavour) is run
111 # 4. when make distclean is run
112 # Don't waste time on reading all Makefile.incs in these cases
113 ifeq ($(strip $(HAVE_DOTCONFIG)),)
114 NOCOMPILE:=1
115 endif
116 ifeq ($(strip $(HAVE_KCONFIG_MAKEFILE_REAL)),)
117 ifneq ($(MAKECMDGOALS),tools)
118 NOCOMPILE:=1
119 endif
120 endif
121 ifneq ($(MAKECMDGOALS),)
122 ifneq ($(filter %config %clean cross% clang iasl lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
123 NOCOMPILE:=1
124 endif
125 ifneq ($(filter %clean lint% help% what-jenkins-does,$(MAKECMDGOALS)),)
126 NOMKDIR:=1
127 UNIT_TEST:=1
128 endif
129 endif
131 ifneq ($(filter help%, $(MAKECMDGOALS)), )
132 NOCOMPILE:=1
133 UNIT_TEST:=1
134 else
135 ifneq ($(filter %-test %-tests %coverage-report, $(MAKECMDGOALS)),)
136 ifneq ($(filter-out %-test %-tests %coverage-report, $(MAKECMDGOALS)),)
137 $(error Cannot mix unit-tests targets with other targets)
138 endif
139 UNIT_TEST:=1
140 NOCOMPILE:=
141 endif
142 endif
144 # When building the "tools" target, the BUILD_ALL_TOOLS variable needs
145 # to be set before reading the tools' Makefiles
146 ifneq ($(filter tools, $(MAKECMDGOALS)), )
147 BUILD_ALL_TOOLS:=1
148 endif
150 $(xcompile): util/xcompile/xcompile
151 rm -f $@
152 $< $(XGCCPATH) > $@.tmp
153 \mv -f $@.tmp $@ 2> /dev/null
154 rm -f $@.tmp
156 ifeq ($(NOCOMPILE),1)
157 # We also don't use .xcompile in the no-compile situations, so
158 # provide some reasonable defaults.
159 HOSTCC ?= $(if $(shell type gcc 2>/dev/null),gcc,cc)
160 HOSTCXX ?= g++
162 include $(TOPLEVEL)/Makefile.mk
163 include $(TOPLEVEL)/payloads/Makefile.mk
164 include $(TOPLEVEL)/util/testing/Makefile.mk
165 -include $(TOPLEVEL)/site-local/Makefile.mk
166 -include $(TOPLEVEL)/site-local/Makefile.inc
167 include $(TOPLEVEL)/tests/Makefile.mk
168 printall real-all:
169 @echo "Error: Trying to build, but NOCOMPILE is set." >&2
170 @echo " Please file a bug with the following information:"
171 @echo "- MAKECMDGOALS: $(MAKECMDGOALS)" >&2
172 @echo "- HAVE_DOTCONFIG: $(HAVE_DOTCONFIG)" >&2
173 @echo "- HAVE_KCONFIG_MAKEFILE_REAL: $(HAVE_KCONFIG_MAKEFILE_REAL)" >&2
174 @exit 1
176 else
178 ifneq ($(UNIT_TEST),1)
179 include $(DOTCONFIG)
180 endif
182 # The toolchain requires xcompile to determine the ARCH_SUPPORTED, so we can't
183 # wait for make to generate the file.
184 $(if $(wildcard $(xcompile)),, $(shell \
185 mkdir -p $(dir $(xcompile)) && \
186 util/xcompile/xcompile $(XGCCPATH) > $(xcompile) || rm -f $(xcompile)))
188 include $(xcompile)
190 ifneq ($(XCOMPILE_COMPLETE),1)
191 $(shell rm -f $(xcompile))
192 $(error $(xcompile) deleted because it's invalid. \
193 Restarting the build should fix that, or explain the problem)
194 endif
196 # reproducible builds
197 LANG:=C
198 LC_ALL:=C
199 TZ:=UTC0
200 ifneq ($(NOCOMPILE),1)
201 SOURCE_DATE_EPOCH := $(shell $(top)/util/genbuild_h/genbuild_h.sh . | sed -n 's/^.define COREBOOT_BUILD_EPOCH\>.*"\(.*\)".*/\1/p')
202 endif
203 # don't use COREBOOT_EXPORTS to ensure build steps outside the coreboot build system
204 # are reproducible
205 export LANG LC_ALL TZ SOURCE_DATE_EPOCH
207 ifneq ($(UNIT_TEST),1)
208 include toolchain.mk
209 endif
211 strip_quotes = $(strip $(subst ",,$(subst \",,$(1))))
212 # fix makefile syntax highlighting after strip macro \" "))
214 ifneq ($(NOCOMPILE),1)
215 $(shell rm -f $(CCACHE_STATSLOG))
216 endif
218 # The primary target needs to be here before we include the
219 # other files
221 real-all: real-target
223 # must come rather early
224 .SECONDARY:
225 .SECONDEXPANSION:
226 .DELETE_ON_ERROR:
228 $(KCONFIG_AUTOHEADER): $(KCONFIG_CONFIG) $(objutil)/kconfig/conf
229 $(MAKE) olddefconfig
230 $(MAKE) syncconfig
232 $(KCONFIG_AUTOCONFIG): $(KCONFIG_AUTOHEADER)
233 true
235 $(KCONFIG_AUTOADS): $(KCONFIG_CONFIG) $(KCONFIG_AUTOHEADER) $(objutil)/kconfig/toada
236 $(objutil)/kconfig/toada CB.Config <$< >$@
238 $(obj)/%/$(notdir $(KCONFIG_AUTOADS)): $(KCONFIG_AUTOADS)
239 cp $< $@
241 # Add a new class of source/object files to the build system
242 add-class= \
243 $(eval $(1)-srcs:=) \
244 $(eval $(1)-objs:=) \
245 $(eval classes+=$(1))
247 # Special classes are managed types with special behaviour
248 # On parse time, for each entry in variable $(1)-y
249 # a handler $(1)-handler is executed with the arguments:
250 # * $(1): directory the parser is in
251 # * $(2): current entry
252 add-special-class= \
253 $(eval $(1):=) \
254 $(eval special-classes+=$(1))
256 # Converts one or more source file paths to their corresponding build/ paths.
257 # Only .ads, adb, .c and .S get converted to .o, other files (like .ld) keep
258 # their name.
259 # $1 stage name
260 # $2 file path (list)
261 src-to-obj=\
262 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
263 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
264 $(patsubst 3rdparty/%,$(obj)/%,\
265 $(patsubst src/%,$(obj)/%,\
266 $(patsubst %.ads,%.o,\
267 $(patsubst %.adb,%.o,\
268 $(patsubst %.c,%.o,\
269 $(patsubst %.S,%.o,\
270 $(subst .$(1),,$(2))))))))))
272 # Converts one or more source file paths to the corresponding build/ paths
273 # of their Ada library information (.ali) files.
274 # $1 stage name
275 # $2 file path (list)
276 src-to-ali=\
277 $(patsubst $(obj)/%,$(obj)/$(1)/%,\
278 $(patsubst $(obj)/$(1)/%,$(obj)/%,\
279 $(patsubst 3rdparty/%,$(obj)/%,\
280 $(patsubst src/%,$(obj)/%,\
281 $(patsubst %.ads,%.ali,\
282 $(patsubst %.adb,%.ali,\
283 $(subst .$(1),,\
284 $(filter %.ads %.adb,$(2)))))))))
286 # Clean -y variables, include Makefile.mk & Makefile.inc
287 # Add paths to files in X-y to X-srcs
288 # Add subdirs-y to subdirs
289 includemakefiles= \
290 $(if $(wildcard $(1)), \
291 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
292 $(eval -include $(1)) \
293 $(foreach class,$(classes-y), $(call add-class,$(class))) \
294 $(foreach special,$(special-classes), \
295 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
296 $(foreach class,$(classes), \
297 $(eval $(class)-srcs+= \
298 $$(subst $(absobj)/,$(obj)/, \
299 $$(subst $(top)/,, \
300 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y)))))))) \
301 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(wildcard $$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))))
303 # For each path in $(subdirs) call includemakefiles
304 # Repeat until subdirs is empty
305 # TODO: Remove Makefile.inc support
306 evaluate_subdirs= \
307 $(eval cursubdirs:=$(subdirs)) \
308 $(eval subdirs:=) \
309 $(foreach dir,$(cursubdirs), \
310 $(eval $(call includemakefiles,$(dir)/Makefile.mk))) \
311 $(foreach dir,$(cursubdirs), \
312 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
313 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
315 # collect all object files eligible for building
316 subdirs:=$(TOPLEVEL)
317 postinclude-hooks :=
319 # Don't iterate through Makefiles under src/ when building tests
320 ifneq ($(UNIT_TEST),1)
321 $(eval $(call evaluate_subdirs))
322 else
323 include $(TOPLEVEL)/tests/Makefile.mk
324 endif
326 ifeq ($(FAILBUILD),1)
327 $(error cannot continue build)
328 endif
330 # Run hooks registered by subdirectories that need to be evaluated after all files have been parsed
331 $(eval $(postinclude-hooks))
333 # Eliminate duplicate mentions of source files in a class
334 $(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
336 ifeq ($(CONFIG_IWYU),y)
337 MAKEFLAGS += -k
338 SAVE_IWYU_OUTPUT := 2>&1 | grep "should\|\#include\|---\|include-list\|^[[:blank:]]\?\'" | tee -a $$(obj)/iwyu.txt
339 endif
341 # Build Kconfig .ads if necessary
342 ifeq ($(CONFIG_ROMSTAGE_ADA),y)
343 romstage-srcs += $(obj)/romstage/$(notdir $(KCONFIG_AUTOADS))
344 endif
345 ifeq ($(CONFIG_RAMSTAGE_ADA),y)
346 ramstage-srcs += $(obj)/ramstage/$(notdir $(KCONFIG_AUTOADS))
347 endif
349 # To track dependencies, we need all Ada specification (.ads) files in
350 # *-srcs. Extract / filter all specification files that have a matching
351 # body (.adb) file here (specifications without a body are valid sources
352 # in Ada).
353 $(foreach class,$(classes),$(eval $(class)-extra-specs := \
354 $(filter \
355 $(addprefix %/,$(patsubst %.adb,%.ads,$(notdir $(filter %.adb,$($(class)-srcs))))), \
356 $(filter %.ads,$($(class)-srcs)))))
357 $(foreach class,$(classes),$(eval $(class)-srcs := \
358 $(filter-out $($(class)-extra-specs),$($(class)-srcs))))
360 $(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class),$($(class)-srcs))))
361 $(foreach class,$(classes),$(eval $(class)-alis:=$(call src-to-ali,$(class),$($(class)-srcs))))
363 # For Ada includes
364 $(foreach class,$(classes),$(eval $(class)-ada-dirs:=$(sort $(dir $(filter %.ads %.adb,$($(class)-srcs)) $($(class)-extra-specs)))))
366 # Call post-processors if they're defined
367 $(foreach class,$(classes),\
368 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
370 allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
371 allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
372 alldirs:=$(sort $(abspath $(dir $(allobjs))))
374 # Reads dependencies from an Ada library information (.ali) file
375 # Only basenames (with suffix) are preserved so we have to look the
376 # paths up in $($(stage)-srcs).
377 # $1 stage name
378 # $2 ali file
379 create_ada_deps=$$(if $(2),\
380 gnat.adc \
381 $$(filter \
382 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
383 $$($(1)-srcs) $$($(1)-extra-specs)))
385 # macro to define template macros that are used by use_template macro
386 define create_cc_template
387 # $1 obj class
388 # $2 source suffix (c, S, ld, ...)
389 # $3 additional compiler flags
390 # $4 additional dependencies
391 ifn$(EMPTY)def $(1)-objs_$(2)_template
392 de$(EMPTY)fine $(1)-objs_$(2)_template
393 ifn$(EMPTY)eq ($(filter ads adb,$(2)),)
394 $$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $$(call create_ada_deps,$1,$$(call src-to-ali,$1,$$(1).$2)) $(4)
395 @printf " GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
396 $(GCC_$(1)) \
397 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs)) \
398 $(3) -c -o $$$$@ $$$$<
399 el$(EMPTY)se
400 $$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $(KCONFIG_AUTOHEADER) $(4)
401 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
402 $(CC_$(1)) \
403 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@) \
404 $(3) -c -o $$$$@ $$$$< $(SAVE_IWYU_OUTPUT)
405 end$(EMPTY)if
406 en$(EMPTY)def
407 end$(EMPTY)if
408 endef
410 filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
411 $(foreach class,$(classes), \
412 $(foreach type,$(call filetypes-of-class,$(class)), \
413 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
414 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
415 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
417 foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
418 $(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
420 # To supported complex package initializations, we need to call the
421 # emitted code explicitly. gnatbind gathers all the calls for us
422 # and exports them as a procedure $(stage)_adainit(). Every stage that
423 # uses Ada code has to call it!
424 define gnatbind_template
425 # $1 class
426 $$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
427 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
428 # We have to give gnatbind a simple filename (without leading
429 # path components) so just cd there.
430 cd $$(dir $$@) && \
431 $$(GNATBIND_$(1)) -a -n \
432 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
433 -L$(1)_ada -o $$(notdir $$@) \
434 $$(subst $$(dir $$@),,$$^)
435 $$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
436 @printf " GCC $$(subst $$(obj)/,,$$@)\n"
437 $(GCC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
438 $(1)-objs += $$(obj)/$(1)/b__$(1).o
439 $($(1)-alis): %.ali: %.o ;
440 endef
442 $(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
443 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
445 DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
446 -include $(DEPENDENCIES)
448 printall:
449 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
450 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
451 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
452 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
453 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
454 endif
456 ifndef NOMKDIR
457 $(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
458 endif
460 $(obj)/project_filelist.txt:
461 if [ -z "$(wildcard $(obj)/coreboot.rom)" ]; then \
462 echo "*** Error: Project must be built before generating file list ***"; \
463 exit 1; \
465 find $(obj) -path "$(obj)/util" -prune -o -path "$(obj)/external" -prune -o -name "*.d" -exec cat {} \; | \
466 sed "s|$(top)/||" | sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
467 grep -v '\.o$$' > $(obj)/project_filelist.txt
469 filelist: $(obj)/project_filelist.txt
470 printf "\nFiles used in build:\n"
471 cat $(obj)/project_filelist.txt
473 #works with either exuberant ctags or ctags.emacs
474 ctags-project: clean-ctags $(obj)/project_filelist.txt
475 cat $(obj)/project_filelist.txt | \
476 xargs ctags -o tags
478 cscope-project: clean-cscope $(obj)/project_filelist.txt
479 cat $(obj)/project_filelist.txt | xargs cscope -b
481 cscope:
482 cscope -bR
484 sphinx:
485 $(MAKE) -C Documentation sphinx
487 sphinx-lint:
488 $(MAKE) SPHINXOPTS=-W -C Documentation sphinx
490 symlink:
491 @echo "Creating Symbolic Links.."; \
492 for link in $(SYMLINK_LIST); do \
493 SYMLINK=`cat $$link`; \
494 REALPATH=`realpath $$link`; \
495 if [ -L "$$SYMLINK" ]; then \
496 continue; \
497 elif [ ! -e "$$SYMLINK" ]; then \
498 echo -e "\tLINK $$SYMLINK -> $$(dirname $$REALPATH)"; \
499 ln -s $$(dirname $$REALPATH) $$SYMLINK; \
500 else \
501 echo -e "\tFAILED: $$SYMLINK exists"; \
502 fi \
503 done
505 clean-symlink:
506 @echo "Deleting symbolic link";\
507 EXISTING_SYMLINKS=`find -L ./src -xtype l | grep -v 3rdparty`; \
508 for link in $$EXISTING_SYMLINKS; do \
509 echo -e "\tUNLINK $$link"; \
510 rm "$$link"; \
511 done
513 clean-for-update:
514 rm -rf $(obj) .xcompile
516 clean: clean-for-update clean-utils clean-payloads
517 rm -f .ccwrap
519 clean-cscope:
520 rm -f cscope.out
522 clean-ctags:
523 rm -f tags
525 clean-utils:
526 $(foreach tool, $(TOOLLIST), \
527 $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
529 distclean-utils:
530 $(foreach tool, $(TOOLLIST), \
531 $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
532 rm -f /util/$(tool)/junit.xml;)
534 distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
535 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
536 rm -rf coreboot-builds coreboot-builds-chromeos
537 rm -f abuild*.xml junit.xml* util/lint/junit.xml
539 .PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean sphinx sphinx-lint
540 .PHONY: ctags-project cscope-project clean-ctags symlink clean-symlink