GNU Linux-libre 4.19.264-gnu1
[releases.git] / tools / scripts / Makefile.include
1 # SPDX-License-Identifier: GPL-2.0
2 ifneq ($(O),)
3 ifeq ($(origin O), command line)
4         dummy := $(if $(shell cd $(PWD); test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
5         ABSOLUTE_O := $(shell cd $(PWD); cd $(O) ; pwd)
6         OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
7         COMMAND_O := O=$(ABSOLUTE_O)
8 ifeq ($(objtree),)
9         objtree := $(O)
10 endif
11 endif
12 endif
13
14 # check that the output directory actually exists
15 ifneq ($(OUTPUT),)
16 OUTDIR := $(shell cd $(OUTPUT) && pwd)
17 $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
18 endif
19
20 #
21 # Include saner warnings here, which can catch bugs:
22 #
23 EXTRA_WARNINGS := -Wbad-function-cast
24 EXTRA_WARNINGS += -Wdeclaration-after-statement
25 EXTRA_WARNINGS += -Wformat-security
26 EXTRA_WARNINGS += -Wformat-y2k
27 EXTRA_WARNINGS += -Winit-self
28 EXTRA_WARNINGS += -Wmissing-declarations
29 EXTRA_WARNINGS += -Wmissing-prototypes
30 EXTRA_WARNINGS += -Wnested-externs
31 EXTRA_WARNINGS += -Wno-system-headers
32 EXTRA_WARNINGS += -Wold-style-definition
33 EXTRA_WARNINGS += -Wpacked
34 EXTRA_WARNINGS += -Wredundant-decls
35 EXTRA_WARNINGS += -Wshadow
36 EXTRA_WARNINGS += -Wstrict-prototypes
37 EXTRA_WARNINGS += -Wswitch-default
38 EXTRA_WARNINGS += -Wswitch-enum
39 EXTRA_WARNINGS += -Wundef
40 EXTRA_WARNINGS += -Wwrite-strings
41 EXTRA_WARNINGS += -Wformat
42
43 CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
44
45 # Makefiles suck: This macro sets a default value of $(2) for the
46 # variable named by $(1), unless the variable has been set by
47 # environment or command line. This is necessary for CC and AR
48 # because make sets default values, so the simpler ?= approach
49 # won't work as expected.
50 define allow-override
51   $(if $(or $(findstring environment,$(origin $(1))),\
52             $(findstring command line,$(origin $(1)))),,\
53     $(eval $(1) = $(2)))
54 endef
55
56 # Allow setting various cross-compile vars or setting CROSS_COMPILE as a prefix.
57 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
58 $(call allow-override,AR,$(CROSS_COMPILE)ar)
59 $(call allow-override,LD,$(CROSS_COMPILE)ld)
60 $(call allow-override,CXX,$(CROSS_COMPILE)g++)
61 $(call allow-override,STRIP,$(CROSS_COMPILE)strip)
62
63 ifneq ($(LLVM),)
64 HOSTAR  ?= llvm-ar
65 HOSTCC  ?= clang
66 HOSTLD  ?= ld.lld
67 else
68 HOSTAR  ?= ar
69 HOSTCC  ?= gcc
70 HOSTLD  ?= ld
71 endif
72
73 ifeq ($(CC_NO_CLANG), 1)
74 EXTRA_WARNINGS += -Wstrict-aliasing=3
75 endif
76
77 # Hack to avoid type-punned warnings on old systems such as RHEL5:
78 # We should be changing CFLAGS and checking gcc version, but this
79 # will do for now and keep the above -Wstrict-aliasing=3 in place
80 # in newer systems.
81 # Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
82 ifneq ($(filter 3.%,$(MAKE_VERSION)),)  # make-3
83 EXTRA_WARNINGS += -fno-strict-aliasing
84 endif
85
86 ifneq ($(findstring $(MAKEFLAGS), w),w)
87 PRINT_DIR = --no-print-directory
88 else
89 NO_SUBDIR = :
90 endif
91
92 ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
93   silent=1
94 endif
95
96 #
97 # Define a callable command for descending to a new directory
98 #
99 # Call by doing: $(call descend,directory[,target])
100 #
101 descend = \
102         +mkdir -p $(OUTPUT)$(1) && \
103         $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
104
105 QUIET_SUBDIR0  = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
106 QUIET_SUBDIR1  =
107
108 ifneq ($(silent),1)
109   ifneq ($(V),1)
110         QUIET_CC       = @echo '  CC       '$@;
111         QUIET_CC_FPIC  = @echo '  CC FPIC  '$@;
112         QUIET_AR       = @echo '  AR       '$@;
113         QUIET_LINK     = @echo '  LINK     '$@;
114         QUIET_MKDIR    = @echo '  MKDIR    '$@;
115         QUIET_GEN      = @echo '  GEN      '$@;
116         QUIET_SUBDIR0  = +@subdir=
117         QUIET_SUBDIR1  = ;$(NO_SUBDIR) \
118                           echo '  SUBDIR   '$$subdir; \
119                          $(MAKE) $(PRINT_DIR) -C $$subdir
120         QUIET_FLEX     = @echo '  FLEX     '$@;
121         QUIET_BISON    = @echo '  BISON    '$@;
122
123         descend = \
124                 +@echo         '  DESCEND  '$(1); \
125                 mkdir -p $(OUTPUT)$(1) && \
126                 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
127
128         QUIET_CLEAN    = @printf '  CLEAN    %s\n' $1;
129         QUIET_INSTALL  = @printf '  INSTALL  %s\n' $1;
130         QUIET_UNINST   = @printf '  UNINST   %s\n' $1;
131   endif
132 endif
133
134 pound := \#