blob: d84b63b4b5e4fbe6068c0f9333914b6c5692ca8b [file] [log] [blame]
Jordan Crousef6145c32008-03-19 23:56:58 +00001##
Patrick Georgic0458e62011-07-02 00:29:09 +02002## This file is part of the libpayload project.
Jordan Crousef6145c32008-03-19 23:56:58 +00003##
4## Copyright (C) 2008 Advanced Micro Devices, Inc.
Uwe Hermanne55b32a2008-08-08 07:56:07 +00005## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
Patrick Georgib3db79e2011-04-21 18:48:50 +02006## Copyright (C) 2009-2010 coresystems GmbH
7## Copyright (C) 2011 secunet Security Networks AG
Jordan Crousef6145c32008-03-19 23:56:58 +00008##
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
Patrick Georgib3db79e2011-04-21 18:48:50 +020033ifeq ($(INNER_SCANBUILD),y)
34CC_real:=$(CC)
Jordan Crousef6145c32008-03-19 23:56:58 +000035endif
36
Stefan Reinauer97f546c2010-04-20 17:19:20 +000037$(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile)))
38include .xcompile
39
Patrick Georgib3db79e2011-04-21 18:48:50 +020040ifeq ($(INNER_SCANBUILD),y)
41CC:=$(CC_real)
42HOSTCC:=$(CC_real) --hostcc
43HOSTCXX:=$(CC_real) --hostcxx
44endif
45
46export top := $(CURDIR)
47export src := src
48export srck := $(top)/util/kconfig
49export obj ?= build
50export objutil ?= $(obj)/util
51export objk := $(objutil)/kconfig
52
53
54export KCONFIG_AUTOHEADER := $(obj)/config.h
55export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
56
57# directory containing the toplevel Makefile.inc
58TOPLEVEL := .
59
Gabe Black1ee2c6d2013-08-09 04:27:35 -070060CONFIG_LP_SHELL := sh
Patrick Georgib3db79e2011-04-21 18:48:50 +020061KBUILD_DEFCONFIG := configs/defconfig
62UNAME_RELEASE := $(shell uname -r)
63DOTCONFIG ?= .config
64KCONFIG_CONFIG = $(DOTCONFIG)
65export KCONFIG_CONFIG
66HAVE_DOTCONFIG := $(wildcard $(DOTCONFIG))
67MAKEFLAGS += -rR --no-print-directory
68
69# Make is silent per default, but 'make V=1' will show all compiler calls.
70Q:=@
71ifneq ($(V),1)
72ifneq ($(Q),)
73.SILENT:
74endif
75endif
76
77CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E
Uwe Hermanne55b32a2008-08-08 07:56:07 +000078HOSTCC = gcc
79HOSTCXX = g++
Patrick Georgib3db79e2011-04-21 18:48:50 +020080HOSTCFLAGS := -I$(srck) -I$(objk) -g
81HOSTCXXFLAGS := -I$(srck) -I$(objk)
Jordan Crousef6145c32008-03-19 23:56:58 +000082
Uwe Hermann3b641292008-08-27 12:53:47 +000083DOXYGEN := doxygen
84DOXYGEN_OUTPUT_DIR := doxygen
85
Patrick Georgib3db79e2011-04-21 18:48:50 +020086all: real-all
Jordan Crousec3e728f2008-04-09 23:05:59 +000087
Uwe Hermannea872452008-10-22 15:49:20 +000088# This include must come _before_ the pattern rules below!
89# Order _does_ matter for pattern rules.
90include util/kconfig/Makefile
91
Stefan Reinauer8af0d032012-12-14 13:05:21 -080092include $(HAVE_DOTCONFIG)
93
Gabe Black51edd542013-09-30 23:00:33 -070094ARCHDIR-$(CONFIG_LP_ARCH_ARM) := arm
Gabe Black1ee2c6d2013-08-09 04:27:35 -070095ARCHDIR-$(CONFIG_LP_ARCH_X86) := x86
Stefan Reinauer8af0d032012-12-14 13:05:21 -080096
97ARCH-y := $(ARCHDIR-y)
98
99# If architecture folder name is different from GCC binutils architecture name,
100# override here.
Gabe Black51edd542013-09-30 23:00:33 -0700101ARCH-$(CONFIG_LP_ARCH_ARM) := arm
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700102ARCH-$(CONFIG_LP_ARCH_X86) := i386
Stefan Reinauer8af0d032012-12-14 13:05:21 -0800103
104CC := $(CC_$(ARCH-y))
105AS := $(AS_$(ARCH-y))
106LD := $(LD_$(ARCH-y))
107NM := $(NM_$(ARCH-y))
108OBJCOPY := $(OBJCOPY_$(ARCH-y))
109OBJDUMP := $(OBJDUMP_$(ARCH-y))
110READELF := $(READELF_$(ARCH-y))
111STRIP := $(STRIP_$(ARCH-y))
112AR := $(AR_$(ARCH-y))
113
114CFLAGS += $(CFLAGS_$(ARCH-y))
115
116LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && \
117 $(CC) -print-libgcc-file-name)
118
Patrick Georgib3db79e2011-04-21 18:48:50 +0200119# Three cases where we don't need fully populated $(obj) lists:
120# 1. when no .config exists
121# 2. when make config (in any flavour) is run
122# 3. when make distclean is run
123# Don't waste time on reading all Makefile.incs in these cases
Uwe Hermannea872452008-10-22 15:49:20 +0000124ifeq ($(strip $(HAVE_DOTCONFIG)),)
Patrick Georgib3db79e2011-04-21 18:48:50 +0200125NOCOMPILE:=1
126endif
127ifneq ($(MAKECMDGOALS),)
128ifneq ($(filter %config distclean,$(MAKECMDGOALS)),)
129NOCOMPILE:=1
130endif
131endif
132
133ifeq ($(NOCOMPILE),1)
134include $(TOPLEVEL)/Makefile.inc
135real-all: config
136
Uwe Hermannea872452008-10-22 15:49:20 +0000137else
138
Patrick Georgib3db79e2011-04-21 18:48:50 +0200139ifneq ($(INNER_SCANBUILD),y)
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700140ifeq ($(CONFIG_LP_COMPILER_LLVM_CLANG),y)
Patrick Georgib3db79e2011-04-21 18:48:50 +0200141CC:=clang -m32
142HOSTCC:=clang
143endif
144endif
145
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700146ifeq ($(CONFIG_LP_CCACHE),y)
Patrick Georgib3db79e2011-04-21 18:48:50 +0200147CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
148ifeq ($(CCACHE),)
149$(error ccache selected, but not found in PATH)
150endif
151CCACHE:=CCACHE_COMPILERCHECK=content CCACHE_BASEDIR=$(top) $(CCACHE)
152CC := $(CCACHE) $(CC)
153HOSTCC := $(CCACHE) $(HOSTCC)
154HOSTCXX := $(CCACHE) $(HOSTCXX)
155ROMCC := $(CCACHE) $(ROMCC)
156endif
157
158strip_quotes = $(subst ",,$(subst \",,$(1)))
159
160# The primary target needs to be here before we include the
161# other files
162
163ifeq ($(INNER_SCANBUILD),y)
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700164CONFIG_LP_SCANBUILD_ENABLE:=
Patrick Georgib3db79e2011-04-21 18:48:50 +0200165endif
166
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700167ifeq ($(CONFIG_LP_SCANBUILD_ENABLE),y)
168ifneq ($(CONFIG_LP_SCANBUILD_REPORT_LOCATION),)
169CONFIG_LP_SCANBUILD_REPORT_LOCATION:=-o $(CONFIG_LP_SCANBUILD_REPORT_LOCATION)
Patrick Georgib3db79e2011-04-21 18:48:50 +0200170endif
171real-all:
172 echo '#!/bin/sh' > .ccwrap
173 echo 'CC="$(CC)"' >> .ccwrap
174 echo 'if [ "$$1" = "--hostcc" ]; then shift; CC="$(HOSTCC)"; fi' >> .ccwrap
175 echo 'if [ "$$1" = "--hostcxx" ]; then shift; CC="$(HOSTCXX)"; fi' >> .ccwrap
176 echo 'eval $$CC $$*' >> .ccwrap
177 chmod +x .ccwrap
Gabe Black1ee2c6d2013-08-09 04:27:35 -0700178 scan-build $(CONFIG_LP_SCANBUILD_REPORT_LOCATION) -analyze-headers --use-cc=$(top)/.ccwrap --use-c++=$(top)/.ccwrap $(MAKE) INNER_SCANBUILD=y
Patrick Georgib3db79e2011-04-21 18:48:50 +0200179else
180real-all: real-target
181endif
182
183# must come rather early
184.SECONDEXPANSION:
185
186$(obj)/config.h:
187 $(MAKE) oldconfig
188
189# Add a new class of source/object files to the build system
190add-class= \
191 $(eval $(1)-srcs:=) \
192 $(eval $(1)-objs:=) \
193 $(eval classes+=$(1))
194
195# Special classes are managed types with special behaviour
196# On parse time, for each entry in variable $(1)-y
197# a handler $(1)-handler is executed with the arguments:
198# * $(1): directory the parser is in
199# * $(2): current entry
200add-special-class= \
201 $(eval $(1):=) \
202 $(eval special-classes+=$(1))
203
204# Clean -y variables, include Makefile.inc
205# Add paths to files in X-y to X-srcs
206# Add subdirs-y to subdirs
207includemakefiles= \
208 $(foreach class,classes subdirs $(classes) $(special-classes), $(eval $(class)-y:=)) \
209 $(eval -include $(1)) \
210 $(foreach class,$(classes-y), $(call add-class,$(class))) \
211 $(foreach class,$(classes), \
212 $(eval $(class)-srcs+= \
213 $$(subst $(top)/,, \
214 $$(abspath $$(addprefix $(dir $(1)),$$($(class)-y)))))) \
215 $(foreach special,$(special-classes), \
216 $(foreach item,$($(special)-y), $(call $(special)-handler,$(dir $(1)),$(item)))) \
217 $(eval subdirs+=$$(subst $(CURDIR)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
218
219# For each path in $(subdirs) call includemakefiles
220# Repeat until subdirs is empty
221evaluate_subdirs= \
222 $(eval cursubdirs:=$(subdirs)) \
223 $(eval subdirs:=) \
224 $(foreach dir,$(cursubdirs), \
225 $(eval $(call includemakefiles,$(dir)/Makefile.inc))) \
226 $(if $(subdirs),$(eval $(call evaluate_subdirs)))
227
228# collect all object files eligible for building
229subdirs:=$(TOPLEVEL)
230$(eval $(call evaluate_subdirs))
231
232src-to-obj=$(addsuffix .$(1).o, $(basename $(addprefix $(obj)/, $($(1)-srcs))))
233$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class))))
234
235allsrcs:=$(foreach var, $(addsuffix -srcs,$(classes)), $($(var)))
236allobjs:=$(foreach var, $(addsuffix -objs,$(classes)), $($(var)))
237alldirs:=$(sort $(abspath $(dir $(allobjs))))
238
239# macro to define template macros that are used by use_template macro
240define create_cc_template
241# $1 obj class
242# $2 source suffix (c, S)
243# $3 additional compiler flags
244# $4 additional dependencies
245ifn$(EMPTY)def $(1)-objs_$(2)_template
246de$(EMPTY)fine $(1)-objs_$(2)_template
Gabe Blackf06111a2013-03-12 15:50:08 -0700247$(obj)/$$(1).$(1).o: $$(1).$(2) $(obj)/libpayload-config.h $(4)
Patrick Georgib3db79e2011-04-21 18:48:50 +0200248 @printf " CC $$$$(subst $$$$(obj)/,,$$$$(@))\n"
249 $(CC) $(3) -MMD $$$$(CFLAGS) -c -o $$$$@ $$$$<
250en$(EMPTY)def
251end$(EMPTY)if
252endef
253
254filetypes-of-class=$(subst .,,$(sort $(suffix $($(1)-srcs))))
255$(foreach class,$(classes), \
256 $(foreach type,$(call filetypes-of-class,$(class)), \
257 $(eval $(call create_cc_template,$(class),$(type),$($(class)-$(type)-ccopts),$($(class)-$(type)-deps)))))
258
259foreach-src=$(foreach file,$($(1)-srcs),$(eval $(call $(1)-objs_$(subst .,,$(suffix $(file)))_template,$(basename $(file)))))
260$(eval $(foreach class,$(classes),$(call foreach-src,$(class))))
261
262DEPENDENCIES = $(allobjs:.o=.d)
263-include $(DEPENDENCIES)
264
265printall:
266 @$(foreach class,$(classes),echo $(class)-objs:=$($(class)-objs); )
267 @echo alldirs:=$(alldirs)
268 @echo allsrcs=$(allsrcs)
269 @echo DEPENDENCIES=$(DEPENDENCIES)
270 @echo LIBGCC_FILE_NAME=$(LIBGCC_FILE_NAME)
271 @$(foreach class,$(special-classes),echo $(class):='$($(class))'; )
Uwe Hermannea872452008-10-22 15:49:20 +0000272
273endif
Jordan Crousef6145c32008-03-19 23:56:58 +0000274
Patrick Georgib3db79e2011-04-21 18:48:50 +0200275$(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs))
Jordan Crousef6145c32008-03-19 23:56:58 +0000276
Patrick Georgib3db79e2011-04-21 18:48:50 +0200277cscope:
278 cscope -bR
279
280doxy: doxygen
281doxygen:
282 $(DOXYGEN) Doxyfile
283
284doxyclean: doxygen-clean
285doxygen-clean:
286 rm -rf $(DOXYGEN_OUTPUT_DIR)
287
288clean-for-update: doxygen-clean clean-for-update-target
289 rm -f $(allobjs) .xcompile
290 rm -f $(DEPENDENCIES)
291 rmdir -p $(alldirs) 2>/dev/null >/dev/null || true
292
293clean: clean-for-update clean-target
294 rm -f .ccwrap
295
296clean-cscope:
297 rm -f cscope.out
298
299distclean: clean-cscope
300 rm -rf $(obj)
301 rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile
302
303.PHONY: $(PHONY) clean clean-cscope cscope distclean doxygen doxy .xcompile