Use coreboot build system for libpayload, too.
[coreboot.git] / payloads / libpayload / Makefile
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.
19 ##
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.
31 ##
32
33 ifeq ($(INNER_SCANBUILD),y)
34 CC_real:=$(CC)
35 endif
36
37 $(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile)))
38 include .xcompile
39
40 ifeq ($(INNER_SCANBUILD),y)
41 CC:=$(CC_real)
42 HOSTCC:=$(CC_real) --hostcc
43 HOSTCXX:=$(CC_real) --hostcxx
44 endif
45
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
52
53
54 export KCONFIG_AUTOHEADER := $(obj)/config.h
55 export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
56
57 # directory containing the toplevel Makefile.inc
58 TOPLEVEL := .
59
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
68
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
76
77 CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E
78 HOSTCC = gcc
79 HOSTCXX = g++
80 HOSTCFLAGS := -I$(srck) -I$(objk) -g
81 HOSTCXXFLAGS := -I$(srck) -I$(objk)
82 LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && $(CC) -print-libgcc-file-name)
83
84 DOXYGEN := doxygen
85 DOXYGEN_OUTPUT_DIR := doxygen
86
87 all: real-all
88
89 # This include must come _before_ the pattern rules below!
90 # Order _does_ matter for pattern rules.
91 include util/kconfig/Makefile
92
93 # Three cases where we don't need fully populated $(obj) lists:
94 # 1. when no .config exists
95 # 2. when make config (in any flavour) is run
96 # 3. when make distclean is run
97 # Don't waste time on reading all Makefile.incs in these cases
98 ifeq ($(strip $(HAVE_DOTCONFIG)),)
99 NOCOMPILE:=1
100 endif
101 ifneq ($(MAKECMDGOALS),)
102 ifneq ($(filter %config distclean,$(MAKECMDGOALS)),)
103 NOCOMPILE:=1
104 endif
105 endif
106
107 ifeq ($(NOCOMPILE),1)
108 include $(TOPLEVEL)/Makefile.inc
109 real-all: config
110
111 else
112
113 include $(HAVE_DOTCONFIG)
114
115 ifneq ($(INNER_SCANBUILD),y)
116 ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y)
117 CC:=clang -m32
118 HOSTCC:=clang
119 endif
120 endif
121
122 ifeq ($(CONFIG_CCACHE),y)
123 CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
124 ifeq ($(CCACHE),)
125 $(error ccache selected, but not found in PATH)
126 endif
127 CCACHE:=CCACHE_COMPILERCHECK=content CCACHE_BASEDIR=$(top) $(CCACHE)
128 CC := $(CCACHE) $(CC)
129 HOSTCC := $(CCACHE) $(HOSTCC)
130 HOSTCXX := $(CCACHE) $(HOSTCXX)
131 ROMCC := $(CCACHE) $(ROMCC)
132 endif
133
134 strip_quotes = $(subst ",,$(subst \",,$(1)))
135
136 # The primary target needs to be here before we include the
137 # other files
138
139 ifeq ($(INNER_SCANBUILD),y)
140 CONFIG_SCANBUILD_ENABLE:=
141 endif
142
143 ifeq ($(CONFIG_SCANBUILD_ENABLE),y)
144 ifneq ($(CONFIG_SCANBUILD_REPORT_LOCATION),)
145 CONFIG_SCANBUILD_REPORT_LOCATION:=-o $(CONFIG_SCANBUILD_REPORT_LOCATION)
146 endif
147 real-all:
148         echo '#!/bin/sh' > .ccwrap
149         echo 'CC="$(CC)"' >> .ccwrap
150         echo 'if [ "$$1" = "--hostcc" ]; then shift; CC="$(HOSTCC)"; fi' >> .ccwrap
151         echo 'if [ "$$1" = "--hostcxx" ]; then shift; CC="$(HOSTCXX)"; fi' >> .ccwrap
152         echo 'eval $$CC $$*' >> .ccwrap
153         chmod +x .ccwrap
154         scan-build $(CONFIG_SCANBUILD_REPORT_LOCATION) -analyze-headers --use-cc=$(top)/.ccwrap --use-c++=$(top)/.ccwrap $(MAKE) INNER_SCANBUILD=y
155 else
156 real-all: real-target
157 endif
158
159 # must come rather early
160 .SECONDEXPANSION:
161
162 $(obj)/config.h:
163         $(MAKE) oldconfig
164
165 # Add a new class of source/object files to the build system
166 add-class= \
167         $(eval $(1)-srcs:=) \
168         $(eval $(1)-objs:=) \
169         $(eval classes+=$(1))
170
171 # Special classes are managed types with special behaviour
172 # On parse time, for each entry in variable $(1)-y
173 # a handler $(1)-handler is executed with the arguments:
174 # * $(1): directory the parser is in
175 # * $(2): current entry
176 add-special-class= \
177         $(eval $(1):=) \
178         $(eval special-classes+=$(1))
179
180 # Clean -y variables, include Makefile.inc
181 # Add paths to files in X-y to X-srcs
182 # Add subdirs-y to subdirs
183 includemakefiles= \
184         $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
185         $(eval -include $(1)) \
186         $(foreach class,$(classes-y), $(call add-class,$(class))) \
187         $(foreach class,$(classes), \
188                 $(eval $(class)-srcs+= \
189                         $$(subst $(top)/,, \
190                         $$(abspath $$(addprefix $(dir $(1)),$$($(class)-y)))))) \
191         $(foreach special,$(special-classes), \
192                 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
193         $(eval subdirs+=$$(subst $(CURDIR)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
194
195 # For each path in $(subdirs) call includemakefiles
196 # Repeat until subdirs is empty
197 evaluate_subdirs= \
198         $(eval cursubdirs:=$(subdirs)) \
199         $(eval subdirs:=) \
200         $(foreach dir,$(cursubdirs), \
201                 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
202         $(if $(subdirs),$(eval $(call evaluate_subdirs)))
203
204 # collect all object files eligible for building
205 subdirs:=$(TOPLEVEL)
206 $(eval $(call evaluate_subdirs))
207
208 src-to-obj=$(addsuffix .$(1).o, $(basename $(addprefix $(obj)/, $($(1)-srcs))))
209 $(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class))))
210
211 allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
212 allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
213 alldirs:=$(sort $(abspath $(dir $(allobjs))))
214
215 # macro to define template macros that are used by use_template macro
216 define create_cc_template
217 # $1 obj class
218 # $2 source suffix (c, S)
219 # $3 additional compiler flags
220 # $4 additional dependencies
221 ifn$(EMPTY)def $(1)-objs_$(2)_template
222 de$(EMPTY)fine $(1)-objs_$(2)_template
223 $(obj)/$$(1).$(1).o: $$(1).$(2) $(obj)/config.h $(4)
224         @printf "    CC         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
225         $(CC) $(3) -MMD $$$$(CFLAGS) -c -o $$$$@ $$$$<
226 en$(EMPTY)def
227 end$(EMPTY)if
228 endef
229
230 filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
231 $(foreach class,$(classes), \
232         $(foreach type,$(call filetypes-of-class,$(class)), \
233                 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps)))))
234
235 foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
236 $(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
237
238 DEPENDENCIES = $(allobjs:.o=.d)
239 -include $(DEPENDENCIES)
240
241 printall:
242         @$(foreach class,$(classes),echo $(class)-objs:=$($(class)-objs); )
243         @echo alldirs:=$(alldirs)
244         @echo allsrcs=$(allsrcs)
245         @echo DEPENDENCIES=$(DEPENDENCIES)
246         @echo LIBGCC_FILE_NAME=$(LIBGCC_FILE_NAME)
247         @$(foreach class,$(special-classes),echo $(class):='$($(class))'; )
248
249 endif
250
251 $(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs))
252
253 cscope:
254         cscope -bR
255
256 doxy: doxygen
257 doxygen:
258         $(DOXYGEN) Doxyfile
259
260 doxyclean: doxygen-clean
261 doxygen-clean:
262         rm -rf $(DOXYGEN_OUTPUT_DIR)
263
264 clean-for-update: doxygen-clean clean-for-update-target
265         rm -f $(allobjs) .xcompile
266         rm -f $(DEPENDENCIES)
267         rmdir -p $(alldirs) 2>/dev/null >/dev/null || true
268
269 clean: clean-for-update clean-target
270         rm -f .ccwrap
271
272 clean-cscope:
273         rm -f cscope.out
274
275 distclean: clean-cscope
276         rm -rf $(obj)
277         rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile
278
279 .PHONY: $(PHONY) clean clean-cscope cscope distclean doxygen doxy .xcompile