Make: Use unaltered object list for dependency inclusion
[coreboot.git] / Makefile
blobdec32e5dc2e72a9b329e36314ccfadcc1116d5bd
1 ##
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>
6 ## Copyright (C) 2009-2010 coresystems GmbH
7 ## Copyright (C) 2011 secunet Security Networks AG
8 ##
9 ## 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.
20 ## 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.
33 ifeq ($(INNER_SCANBUILD),y)
34 CC_real:=$(CC)
35 endif
37 $(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile $(XGCCPATH) > .xcompile)))
38 include .xcompile
40 ifeq ($(INNER_SCANBUILD),y)
41 CC:=$(CC_real)
42 HOSTCC:=$(CC_real) --hostcc
43 HOSTCXX:=$(CC_real) --hostcxx
44 endif
46 export top := $(CURDIR)
47 export src := src
48 export srck := $(top)/util/kconfig
49 export obj ?= build
50 export objutil ?= $(obj)/util
51 export objk := $(objutil)/kconfig
54 export KCONFIG_AUTOHEADER := $(obj)/config.h
55 export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
57 # directory containing the toplevel Makefile.inc
58 TOPLEVEL := .
60 CONFIG_SHELL := sh
61 KBUILD_DEFCONFIG := configs/defconfig
62 UNAME_RELEASE := $(shell uname -r)
63 DOTCONFIG ?= .config
64 KCONFIG_CONFIG = $(DOTCONFIG)
65 export KCONFIG_CONFIG
66 HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
67 MAKEFLAGS += -rR --no-print-directory
69 # Make is silent per default, but 'make V=1' will show all compiler calls.
70 Q:=@
71 ifneq ($(V),1)
72 ifneq ($(Q),)
73 .SILENT:
74 endif
75 endif
77 HOSTCC = gcc
78 HOSTCXX = g++
79 HOSTCFLAGS := -g
80 HOSTCXXFLAGS := -g
82 DOXYGEN := doxygen
83 DOXYGEN_OUTPUT_DIR := doxygen
85 all: real-all
87 # This include must come _before_ the pattern rules below!
88 # Order _does_ matter for pattern rules.
89 include util/kconfig/Makefile
91 # Three cases where we don't need fully populated $(obj) lists:
92 # 1. when no .config exists
93 # 2. when make config (in any flavour) is run
94 # 3. when make distclean is run
95 # Don't waste time on reading all Makefile.incs in these cases
96 ifeq ($(strip $(HAVE_DOTCONFIG)),)
97 NOCOMPILE:=1
98 endif
99 ifneq ($(MAKECMDGOALS),)
100 ifneq ($(filter %config %clean,$(MAKECMDGOALS)),)
101 NOCOMPILE:=1
102 endif
103 ifeq ($(MAKECMDGOALS), %clean)
104 NOMKDIR:=1
105 endif
106 endif
108 ifeq ($(NOCOMPILE),1)
109 include $(TOPLEVEL)/Makefile.inc
110 real-all: config
112 else
114 include $(HAVE_DOTCONFIG)
116 ARCHDIR-$(CONFIG_ARCH_ARMV7) := armv7
117 ARCHDIR-$(CONFIG_ARCH_X86) := x86
119 ARCH-y := $(ARCHDIR-y)
121 # If architecture folder name is different from GCC binutils architecture name,
122 # override here.
123 ARCH-$(CONFIG_ARCH_ARMV7) := armv7
124 ARCH-$(CONFIG_ARCH_X86) := i386
126 ifneq ($(INNER_SCANBUILD),y)
127 CC := $(CC_$(ARCH-y))
128 endif
129 AS := $(AS_$(ARCH-y))
130 LD := $(LD_$(ARCH-y))
131 NM := $(NM_$(ARCH-y))
132 OBJCOPY := $(OBJCOPY_$(ARCH-y))
133 OBJDUMP := $(OBJDUMP_$(ARCH-y))
134 READELF := $(READELF_$(ARCH-y))
135 STRIP := $(STRIP_$(ARCH-y))
136 AR := $(AR_$(ARCH-y))
138 CFLAGS += $(CFLAGS_$(ARCH-y))
140 LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && \
141 $(CC) -print-libgcc-file-name)
143 ifneq ($(INNER_SCANBUILD),y)
144 ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y)
145 CC:=clang -m32 -mno-mmx -mno-sse
146 HOSTCC:=clang
147 endif
148 endif
150 ifeq ($(CONFIG_CCACHE),y)
151 CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
152 ifeq ($(CCACHE),)
153 $(error ccache selected, but not found in PATH)
154 endif
155 CCACHE:=CCACHE_COMPILERCHECK=content CCACHE_BASEDIR=$(top) $(CCACHE)
156 CC := $(CCACHE) $(CC)
157 HOSTCC := $(CCACHE) $(HOSTCC)
158 HOSTCXX := $(CCACHE) $(HOSTCXX)
159 ROMCC := $(CCACHE) $(ROMCC)
160 endif
162 strip_quotes = $(subst ",,$(subst \",,$(1)))
164 # The primary target needs to be here before we include the
165 # other files
167 ifeq ($(INNER_SCANBUILD),y)
168 CONFIG_SCANBUILD_ENABLE:=
169 endif
171 ifeq ($(CONFIG_SCANBUILD_ENABLE),y)
172 ifneq ($(CONFIG_SCANBUILD_REPORT_LOCATION),)
173 CONFIG_SCANBUILD_REPORT_LOCATION:=-o $(CONFIG_SCANBUILD_REPORT_LOCATION)
174 endif
175 real-all:
176 echo '#!/bin/sh' > .ccwrap
177 echo 'CC="$(CC)"' >> .ccwrap
178 echo 'if [ "$$1" = "--hostcc" ]; then shift; CC="$(HOSTCC)"; fi' >> .ccwrap
179 echo 'if [ "$$1" = "--hostcxx" ]; then shift; CC="$(HOSTCXX)"; fi' >> .ccwrap
180 echo 'eval $$CC $$*' >> .ccwrap
181 chmod +x .ccwrap
182 scan-build $(CONFIG_SCANBUILD_REPORT_LOCATION) -analyze-headers --use-cc=$(top)/.ccwrap --use-c++=$(top)/.ccwrap $(MAKE) INNER_SCANBUILD=y
183 else
184 real-all: real-target
185 endif
187 # must come rather early
188 .SECONDEXPANSION:
190 $(obj)/config.h:
191 $(MAKE) oldconfig
193 # Add a new class of source/object files to the build system
194 add-class= \
195 $(eval $(1)-srcs:=) \
196 $(eval $(1)-objs:=) \
197 $(eval classes+=$(1))
199 # Special classes are managed types with special behaviour
200 # On parse time, for each entry in variable $(1)-y
201 # a handler $(1)-handler is executed with the arguments:
202 # * $(1): directory the parser is in
203 # * $(2): current entry
204 add-special-class= \
205 $(eval $(1):=) \
206 $(eval special-classes+=$(1))
208 # Clean -y variables, include Makefile.inc
209 # Add paths to files in X-y to X-srcs
210 # Add subdirs-y to subdirs
211 includemakefiles= \
212 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
213 $(eval -include $(1)) \
214 $(foreach class,$(classes-y), $(call add-class,$(class))) \
215 $(foreach class,$(classes), \
216 $(eval $(class)-srcs+= \
217 $$(subst $(top)/,, \
218 $$(abspath $$(subst $(dir $(1))/,/,$$(addprefix $(dir $(1)),$$($(class)-y))))))) \
219 $(foreach special,$(special-classes), \
220 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
221 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
223 # For each path in $(subdirs) call includemakefiles
224 # Repeat until subdirs is empty
225 evaluate_subdirs= \
226 $(eval cursubdirs:=$(subdirs)) \
227 $(eval subdirs:=) \
228 $(foreach dir,$(cursubdirs), \
229 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
230 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
232 # collect all object files eligible for building
233 subdirs:=$(TOPLEVEL)
234 $(eval $(call evaluate_subdirs))
235 ifeq ($(FAILBUILD),1)
236 $(error cannot continue build)
237 endif
239 # Eliminate duplicate mentions of source files in a class
240 $(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
242 src-to-obj=$(addsuffix .$(1).o, $(basename $(patsubst src/%, $(obj)/%, $($(1)-srcs))))
243 $(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class))))
245 # Save all objs before processing them (for dependency inclusion)
246 originalobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
248 # Call post-processors if they're defined
249 $(foreach class,$(classes),\
250 $(if $(value $(class)-postprocess),$(eval $(call $(class)-postprocess,$($(class)-objs)))))
252 allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
253 allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
254 alldirs:=$(sort $(abspath $(dir $(allobjs))))
256 # macro to define template macros that are used by use_template macro
257 define create_cc_template
258 # $1 obj class
259 # $2 source suffix (c, S)
260 # $3 additional compiler flags
261 # $4 additional dependencies
262 ifn$(EMPTY)def $(1)-objs_$(2)_template
263 de$(EMPTY)fine $(1)-objs_$(2)_template
264 $(obj)/$$(1).$(1).o: src/$$(1).$(2) $(obj)/config.h $(4)
265 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
266 $(CC) $(3) -MMD $$$$(CFLAGS) -c -o $$$$@ $$$$<
267 en$(EMPTY)def
268 end$(EMPTY)if
269 endef
271 filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
272 $(foreach class,$(classes), \
273 $(foreach type,$(call filetypes-of-class,$(class)), \
274 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps)))))
276 foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(subst src/,,$(basename $(file))))))
277 $(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
279 DEPENDENCIES = $(originalobjs:.o=.d)
280 -include $(DEPENDENCIES)
282 printall:
283 @$(foreach class,$(classes),echo $(class)-objs:=$($(class)-objs); )
284 @echo alldirs:=$(alldirs)
285 @echo allsrcs=$(allsrcs)
286 @echo DEPENDENCIES=$(DEPENDENCIES)
287 @echo LIBGCC_FILE_NAME=$(LIBGCC_FILE_NAME)
288 @$(foreach class,$(special-classes),echo $(class):='$($(class))'; )
290 endif
292 ifndef NOMKDIR
293 $(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs))
294 endif
296 cscope:
297 cscope -bR
299 doxy: doxygen
300 doxygen:
301 $(DOXYGEN) documentation/Doxyfile.coreboot
303 doxyclean: doxygen-clean
304 doxygen-clean:
305 rm -rf $(DOXYGEN_OUTPUT_DIR)
307 clean-for-update: doxygen-clean clean-for-update-target
308 rm -rf $(obj) .xcompile
310 clean: clean-for-update clean-target
311 rm -f .ccwrap
313 clean-cscope:
314 rm -f cscope.out
316 distclean: clean
317 rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile
319 .PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy .xcompile