soc/intel/xeon_sp: Add device find utils
[coreboot.git] / Makefile
blob412d6a678a020e1cc0829137ae82ad873f9fcf03
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 # Save all objs before processing them (for dependency inclusion)
367 originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
369 # Call post-processors if they're defined
370 $(foreach class,$(classes),\
371 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
373 allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
374 allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
375 alldirs:=$(sort $(abspath $(dir $(allobjs))))
377 # Reads dependencies from an Ada library information (.ali) file
378 # Only basenames (with suffix) are preserved so we have to look the
379 # paths up in $($(stage)-srcs).
380 # $1 stage name
381 # $2 ali file
382 create_ada_deps=$$(if $(2),\
383 gnat.adc \
384 $$(filter \
385 $$(addprefix %/,$$(shell sed -ne's/^D \([^\t]\+\).*$$$$/\1/p' $(2) 2>/dev/null)), \
386 $$($(1)-srcs) $$($(1)-extra-specs)))
388 # macro to define template macros that are used by use_template macro
389 define create_cc_template
390 # $1 obj class
391 # $2 source suffix (c, S, ld, ...)
392 # $3 additional compiler flags
393 # $4 additional dependencies
394 ifn$(EMPTY)def $(1)-objs_$(2)_template
395 de$(EMPTY)fine $(1)-objs_$(2)_template
396 ifn$(EMPTY)eq ($(filter ads adb,$(2)),)
397 $$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $$(call create_ada_deps,$1,$$(call src-to-ali,$1,$$(1).$2)) $(4)
398 @printf " GCC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
399 $(GCC_$(1)) \
400 $$$$(ADAFLAGS_$(1)) $$$$(addprefix -I,$$$$($(1)-ada-dirs)) \
401 $(3) -c -o $$$$@ $$$$<
402 el$(EMPTY)se
403 $$(call src-to-obj,$1,$$(1).$2): $$(1).$2 $(KCONFIG_AUTOHEADER) $(4)
404 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
405 $(CC_$(1)) \
406 -MMD $$$$(CPPFLAGS_$(1)) $$$$(CFLAGS_$(1)) -MT $$$$(@) \
407 $(3) -c -o $$$$@ $$$$< $(SAVE_IWYU_OUTPUT)
408 end$(EMPTY)if
409 en$(EMPTY)def
410 end$(EMPTY)if
411 endef
413 filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
414 $(foreach class,$(classes), \
415 $(foreach type,$(call filetypes-of-class,$(class)), \
416 $(eval $(class)-$(type)-ccopts += $(generic-$(type)-ccopts) $($(class)-generic-ccopts)) \
417 $(if $(generic-objs_$(type)_template_gen),$(eval $(call generic-objs_$(type)_template_gen,$(class))),\
418 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps))))))
420 foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
421 $(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
423 # To supported complex package initializations, we need to call the
424 # emitted code explicitly. gnatbind gathers all the calls for us
425 # and exports them as a procedure $(stage)_adainit(). Every stage that
426 # uses Ada code has to call it!
427 define gnatbind_template
428 # $1 class
429 $$(obj)/$(1)/b__$(1).adb: $$$$(filter-out $$(obj)/$(1)/b__$(1).ali,$$$$($(1)-alis))
430 @printf " BIND $$(subst $$(obj)/,,$$@)\n"
431 # We have to give gnatbind a simple filename (without leading
432 # path components) so just cd there.
433 cd $$(dir $$@) && \
434 $$(GNATBIND_$(1)) -a -n \
435 --RTS=$$(absobj)/libgnat-$$(ARCH-$(1)-y)/ \
436 -L$(1)_ada -o $$(notdir $$@) \
437 $$(subst $$(dir $$@),,$$^)
438 $$(obj)/$(1)/b__$(1).o: $$(obj)/$(1)/b__$(1).adb
439 @printf " GCC $$(subst $$(obj)/,,$$@)\n"
440 $(GCC_$(1)) $$(ADAFLAGS_$(1)) -c -o $$@ $$<
441 $(1)-objs += $$(obj)/$(1)/b__$(1).o
442 $($(1)-alis): %.ali: %.o ;
443 endef
445 $(eval $(foreach class,$(filter-out libgnat-%,$(classes)), \
446 $(if $($(class)-alis),$(call gnatbind_template,$(class)))))
448 DEPENDENCIES += $(addsuffix .d,$(basename $(allobjs)))
449 -include $(DEPENDENCIES)
451 printall:
452 @$(foreach class,$(classes), echo $(class)-objs: $($(class)-objs) | tr ' ' '\n'; echo; )
453 @echo alldirs: $(alldirs) | tr ' ' '\n'; echo
454 @echo allsrcs: $(allsrcs) | tr ' ' '\n'; echo
455 @echo DEPENDENCIES: $(DEPENDENCIES) | tr ' ' '\n'; echo
456 @$(foreach class,$(special-classes),echo $(class):'$($(class))' | tr ' ' '\n'; echo; )
457 endif
459 ifndef NOMKDIR
460 $(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog $(additional-dirs) $(alldirs))
461 endif
463 $(obj)/project_filelist.txt:
464 if [ -z "$(wildcard $(obj)/coreboot.rom)" ]; then \
465 echo "*** Error: Project must be built before generating file list ***"; \
466 exit 1; \
468 find $(obj) -path "$(obj)/util" -prune -o -path "$(obj)/external" -prune -o -name "*.d" -exec cat {} \; | \
469 sed "s|$(top)/||" | sed 's/[:\\]/ /g' | sed 's/ /\n/g' | sort | uniq | \
470 grep -v '\.o$$' > $(obj)/project_filelist.txt
472 filelist: $(obj)/project_filelist.txt
473 printf "\nFiles used in build:\n"
474 cat $(obj)/project_filelist.txt
476 #works with either exuberant ctags or ctags.emacs
477 ctags-project: clean-ctags $(obj)/project_filelist.txt
478 cat $(obj)/project_filelist.txt | \
479 xargs ctags -o tags
481 cscope-project: clean-cscope $(obj)/project_filelist.txt
482 cat $(obj)/project_filelist.txt | xargs cscope -b
484 cscope:
485 cscope -bR
487 sphinx:
488 $(MAKE) -C Documentation sphinx
490 sphinx-lint:
491 $(MAKE) SPHINXOPTS=-W -C Documentation sphinx
493 symlink:
494 @echo "Creating Symbolic Links.."; \
495 for link in $(SYMLINK_LIST); do \
496 SYMLINK=`cat $$link`; \
497 REALPATH=`realpath $$link`; \
498 if [ -L "$$SYMLINK" ]; then \
499 continue; \
500 elif [ ! -e "$$SYMLINK" ]; then \
501 echo -e "\tLINK $$SYMLINK -> $$(dirname $$REALPATH)"; \
502 ln -s $$(dirname $$REALPATH) $$SYMLINK; \
503 else \
504 echo -e "\tFAILED: $$SYMLINK exists"; \
505 fi \
506 done
508 clean-symlink:
509 @echo "Deleting symbolic link";\
510 EXISTING_SYMLINKS=`find -L ./src -xtype l | grep -v 3rdparty`; \
511 for link in $$EXISTING_SYMLINKS; do \
512 echo -e "\tUNLINK $$link"; \
513 rm "$$link"; \
514 done
516 clean-for-update:
517 rm -rf $(obj) .xcompile
519 clean: clean-for-update clean-utils clean-payloads
520 rm -f .ccwrap
522 clean-cscope:
523 rm -f cscope.out
525 clean-ctags:
526 rm -f tags
528 clean-utils:
529 $(foreach tool, $(TOOLLIST), \
530 $(MAKE) -C util/$(tool) clean MFLAGS= MAKEFLAGS= ;)
532 distclean-utils:
533 $(foreach tool, $(TOOLLIST), \
534 $(MAKE) -C util/$(tool) distclean MFLAGS= MAKEFLAGS= ; \
535 rm -f /util/$(tool)/junit.xml;)
537 distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils
538 rm -f .config .config.old ..config.tmp* .kconfig.d .tmpconfig* .ccwrap .xcompile
539 rm -rf coreboot-builds coreboot-builds-chromeos
540 rm -f abuild*.xml junit.xml* util/lint/junit.xml
542 .PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean sphinx sphinx-lint
543 .PHONY: ctags-project cscope-project clean-ctags symlink clean-symlink