blob: ded7a950dc4042899b3a61bab51652048dc1fd05 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Borislav Petkov9e4a6642013-02-20 16:32:29 +01002ifneq ($(O),)
David Howellsbf351822012-11-05 21:02:08 +00003ifeq ($(origin O), command line)
Masahiro Yamada028568d2017-10-02 17:07:28 +09004 dummy := $(if $(shell test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
5 ABSOLUTE_O := $(shell cd $(O) ; pwd)
David Howellsbf351822012-11-05 21:02:08 +00006 OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
Steven Rostedtc8831222012-08-13 10:23:02 -04007 COMMAND_O := O=$(ABSOLUTE_O)
David Howellsbf351822012-11-05 21:02:08 +00008ifeq ($(objtree),)
9 objtree := $(O)
10endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +020011endif
Borislav Petkov9e4a6642013-02-20 16:32:29 +010012endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +020013
Borislav Petkov98d89bf2012-04-11 18:36:14 +020014# check that the output directory actually exists
Borislav Petkov9e4a6642013-02-20 16:32:29 +010015ifneq ($(OUTPUT),)
Bjørn Forsman16f82592017-11-05 10:44:16 +010016OUTDIR := $(shell cd $(OUTPUT) && pwd)
Borislav Petkov98d89bf2012-04-11 18:36:14 +020017$(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
18endif
19
20#
21# Include saner warnings here, which can catch bugs:
22#
Borislav Petkovd8caf3e2012-04-11 18:36:15 +020023EXTRA_WARNINGS := -Wbad-function-cast
24EXTRA_WARNINGS += -Wdeclaration-after-statement
25EXTRA_WARNINGS += -Wformat-security
26EXTRA_WARNINGS += -Wformat-y2k
27EXTRA_WARNINGS += -Winit-self
28EXTRA_WARNINGS += -Wmissing-declarations
29EXTRA_WARNINGS += -Wmissing-prototypes
30EXTRA_WARNINGS += -Wnested-externs
31EXTRA_WARNINGS += -Wno-system-headers
32EXTRA_WARNINGS += -Wold-style-definition
33EXTRA_WARNINGS += -Wpacked
34EXTRA_WARNINGS += -Wredundant-decls
Borislav Petkovd8caf3e2012-04-11 18:36:15 +020035EXTRA_WARNINGS += -Wstrict-prototypes
36EXTRA_WARNINGS += -Wswitch-default
37EXTRA_WARNINGS += -Wswitch-enum
38EXTRA_WARNINGS += -Wundef
39EXTRA_WARNINGS += -Wwrite-strings
40EXTRA_WARNINGS += -Wformat
Borislav Petkov98d89bf2012-04-11 18:36:14 +020041
David Carrillo-Cisneros38660582017-08-27 00:54:40 -070042CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
43
Martin Kelly7ed1c192018-02-21 14:45:12 -080044# Makefiles suck: This macro sets a default value of $(2) for the
45# variable named by $(1), unless the variable has been set by
46# environment or command line. This is necessary for CC and AR
47# because make sets default values, so the simpler ?= approach
48# won't work as expected.
49define allow-override
50 $(if $(or $(findstring environment,$(origin $(1))),\
51 $(findstring command line,$(origin $(1)))),,\
52 $(eval $(1) = $(2)))
53endef
54
55# Allow setting various cross-compile vars or setting CROSS_COMPILE as a prefix.
56$(call allow-override,CC,$(CROSS_COMPILE)gcc)
57$(call allow-override,AR,$(CROSS_COMPILE)ar)
58$(call allow-override,LD,$(CROSS_COMPILE)ld)
59$(call allow-override,CXX,$(CROSS_COMPILE)g++)
60$(call allow-override,STRIP,$(CROSS_COMPILE)strip)
61
David Carrillo-Cisneros38660582017-08-27 00:54:40 -070062ifeq ($(CC_NO_CLANG), 1)
Arnaldo Carvalho de Melo093b75e2017-02-14 10:34:35 -030063EXTRA_WARNINGS += -Wstrict-aliasing=3
64endif
65
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -030066# Hack to avoid type-punned warnings on old systems such as RHEL5:
67# We should be changing CFLAGS and checking gcc version, but this
68# will do for now and keep the above -Wstrict-aliasing=3 in place
69# in newer systems.
70# Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -030071#
72# See https://lkml.org/lkml/2006/11/28/253 and https://gcc.gnu.org/gcc-4.8/changes.html,
73# that takes into account Linus's comments (search for Wshadow) for the reasoning about
74# -Wshadow not being interesting before gcc 4.8.
75
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -030076ifneq ($(filter 3.%,$(MAKE_VERSION)),) # make-3
77EXTRA_WARNINGS += -fno-strict-aliasing
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -030078EXTRA_WARNINGS += -Wno-shadow
79else
80EXTRA_WARNINGS += -Wshadow
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -030081endif
82
Borislav Petkov98d89bf2012-04-11 18:36:14 +020083ifneq ($(findstring $(MAKEFLAGS), w),w)
84PRINT_DIR = --no-print-directory
85else
86NO_SUBDIR = :
87endif
88
Masahiro Yamada6f0fa582017-05-19 20:42:30 +090089ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Josh Poimboeufe572d082017-01-18 22:16:55 -060090 silent=1
91endif
Josh Poimboeufe572d082017-01-18 22:16:55 -060092
David Howellsca9dfc62012-11-05 15:15:24 +000093#
94# Define a callable command for descending to a new directory
95#
96# Call by doing: $(call descend,directory[,target])
97#
98descend = \
David Howellsbf351822012-11-05 21:02:08 +000099 +mkdir -p $(OUTPUT)$(1) && \
David Howells2b73f652012-11-13 14:14:38 -0300100 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
David Howellsca9dfc62012-11-05 15:15:24 +0000101
David Howellsbf351822012-11-05 21:02:08 +0000102QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200103QUIET_SUBDIR1 =
104
Josh Poimboeufe572d082017-01-18 22:16:55 -0600105ifneq ($(silent),1)
Ingo Molnar65fb0992013-10-09 11:49:27 +0200106 ifneq ($(V),1)
107 QUIET_CC = @echo ' CC '$@;
Jiri Olsabdebbac2013-12-19 14:42:03 +0100108 QUIET_CC_FPIC = @echo ' CC FPIC '$@;
Ingo Molnar65fb0992013-10-09 11:49:27 +0200109 QUIET_AR = @echo ' AR '$@;
110 QUIET_LINK = @echo ' LINK '$@;
111 QUIET_MKDIR = @echo ' MKDIR '$@;
112 QUIET_GEN = @echo ' GEN '$@;
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200113 QUIET_SUBDIR0 = +@subdir=
Ingo Molnar65fb0992013-10-09 11:49:27 +0200114 QUIET_SUBDIR1 = ;$(NO_SUBDIR) \
115 echo ' SUBDIR '$$subdir; \
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200116 $(MAKE) $(PRINT_DIR) -C $$subdir
Ingo Molnar65fb0992013-10-09 11:49:27 +0200117 QUIET_FLEX = @echo ' FLEX '$@;
118 QUIET_BISON = @echo ' BISON '$@;
David Howellsbf351822012-11-05 21:02:08 +0000119
120 descend = \
Ingo Molnar65fb0992013-10-09 11:49:27 +0200121 +@echo ' DESCEND '$(1); \
David Howellsbf351822012-11-05 21:02:08 +0000122 mkdir -p $(OUTPUT)$(1) && \
David Howells2b73f652012-11-13 14:14:38 -0300123 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
Jiri Olsab7248de2013-12-19 14:42:00 +0100124
125 QUIET_CLEAN = @printf ' CLEAN %s\n' $1;
126 QUIET_INSTALL = @printf ' INSTALL %s\n' $1;
Quentin Monnetd3244242017-12-07 15:00:18 -0800127 QUIET_UNINST = @printf ' UNINST %s\n' $1;
Ingo Molnar65fb0992013-10-09 11:49:27 +0200128 endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200129endif
Rasmus Villemoes9564a8c2018-04-08 23:35:28 +0200130
131pound := \#