Blame view

tools/scripts/Makefile.include 4.14 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  # SPDX-License-Identifier: GPL-2.0
9e4a66482   Borislav Petkov   perf tools: Corre...
2
  ifneq ($(O),)
bf35182ff   David Howells   tools: Honour the...
3
  ifeq ($(origin O), command line)
be40920fb   Masami Hiramatsu   tools: Let O= mak...
4
5
  	dummy := $(if $(shell cd $(PWD); test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
  	ABSOLUTE_O := $(shell cd $(PWD); cd $(O) ; pwd)
bf35182ff   David Howells   tools: Honour the...
6
  	OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
c883122ac   Steven Rostedt   perf tools: Let O...
7
  	COMMAND_O := O=$(ABSOLUTE_O)
bf35182ff   David Howells   tools: Honour the...
8
9
10
  ifeq ($(objtree),)
  	objtree := $(O)
  endif
98d89bfd0   Borislav Petkov   tools: Add Makefi...
11
  endif
9e4a66482   Borislav Petkov   perf tools: Corre...
12
  endif
98d89bfd0   Borislav Petkov   tools: Add Makefi...
13

98d89bfd0   Borislav Petkov   tools: Add Makefi...
14
  # check that the output directory actually exists
9e4a66482   Borislav Petkov   perf tools: Corre...
15
  ifneq ($(OUTPUT),)
16f8259ca   Bjørn Forsman   kbuild: /bin/pwd ...
16
  OUTDIR := $(shell cd $(OUTPUT) && pwd)
98d89bfd0   Borislav Petkov   tools: Add Makefi...
17
18
19
20
21
22
  $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
  endif
  
  #
  # Include saner warnings here, which can catch bugs:
  #
d8caf3eb2   Borislav Petkov   tools: Cleanup EX...
23
24
25
26
27
28
29
30
31
32
33
34
  EXTRA_WARNINGS := -Wbad-function-cast
  EXTRA_WARNINGS += -Wdeclaration-after-statement
  EXTRA_WARNINGS += -Wformat-security
  EXTRA_WARNINGS += -Wformat-y2k
  EXTRA_WARNINGS += -Winit-self
  EXTRA_WARNINGS += -Wmissing-declarations
  EXTRA_WARNINGS += -Wmissing-prototypes
  EXTRA_WARNINGS += -Wnested-externs
  EXTRA_WARNINGS += -Wno-system-headers
  EXTRA_WARNINGS += -Wold-style-definition
  EXTRA_WARNINGS += -Wpacked
  EXTRA_WARNINGS += -Wredundant-decls
d8caf3eb2   Borislav Petkov   tools: Cleanup EX...
35
36
37
38
39
40
  EXTRA_WARNINGS += -Wstrict-prototypes
  EXTRA_WARNINGS += -Wswitch-default
  EXTRA_WARNINGS += -Wswitch-enum
  EXTRA_WARNINGS += -Wundef
  EXTRA_WARNINGS += -Wwrite-strings
  EXTRA_WARNINGS += -Wformat
98d89bfd0   Borislav Petkov   tools: Add Makefi...
41

3866058ef   David Carrillo-Cisneros   perf tools: Robus...
42
  CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
7ed1c1901   Martin Kelly   tools: fix cross-...
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  # Makefiles suck: This macro sets a default value of $(2) for the
  # variable named by $(1), unless the variable has been set by
  # environment or command line. This is necessary for CC and AR
  # because make sets default values, so the simpler ?= approach
  # won't work as expected.
  define allow-override
    $(if $(or $(findstring environment,$(origin $(1))),\
              $(findstring command line,$(origin $(1)))),,\
      $(eval $(1) = $(2)))
  endef
  
  # Allow setting various cross-compile vars or setting CROSS_COMPILE as a prefix.
  $(call allow-override,CC,$(CROSS_COMPILE)gcc)
  $(call allow-override,AR,$(CROSS_COMPILE)ar)
  $(call allow-override,LD,$(CROSS_COMPILE)ld)
  $(call allow-override,CXX,$(CROSS_COMPILE)g++)
  $(call allow-override,STRIP,$(CROSS_COMPILE)strip)
3866058ef   David Carrillo-Cisneros   perf tools: Robus...
60
  ifeq ($(CC_NO_CLANG), 1)
093b75ef5   Arnaldo Carvalho de Melo   tools: Suppress r...
61
62
  EXTRA_WARNINGS += -Wstrict-aliasing=3
  endif
3337e682d   Arnaldo Carvalho de Melo   tools arch x86: I...
63
64
65
66
67
  # Hack to avoid type-punned warnings on old systems such as RHEL5:
  # We should be changing CFLAGS and checking gcc version, but this
  # will do for now and keep the above -Wstrict-aliasing=3 in place
  # in newer systems.
  # Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
39e7317e3   Arnaldo Carvalho de Melo   perf build: Do no...
68
69
70
71
  #
  # See https://lkml.org/lkml/2006/11/28/253 and https://gcc.gnu.org/gcc-4.8/changes.html,
  # that takes into account Linus's comments (search for Wshadow) for the reasoning about
  # -Wshadow not being interesting before gcc 4.8.
3337e682d   Arnaldo Carvalho de Melo   tools arch x86: I...
72
73
  ifneq ($(filter 3.%,$(MAKE_VERSION)),)  # make-3
  EXTRA_WARNINGS += -fno-strict-aliasing
39e7317e3   Arnaldo Carvalho de Melo   perf build: Do no...
74
75
76
  EXTRA_WARNINGS += -Wno-shadow
  else
  EXTRA_WARNINGS += -Wshadow
3337e682d   Arnaldo Carvalho de Melo   tools arch x86: I...
77
  endif
98d89bfd0   Borislav Petkov   tools: Add Makefi...
78
79
80
81
82
  ifneq ($(findstring $(MAKEFLAGS), w),w)
  PRINT_DIR = --no-print-directory
  else
  NO_SUBDIR = :
  endif
6f0fa58e4   Masahiro Yamada   kbuild: simplify ...
83
  ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
e572d0887   Josh Poimboeuf   tools build: Add ...
84
85
    silent=1
  endif
e572d0887   Josh Poimboeuf   tools build: Add ...
86

ca9dfc6cc   David Howells   tools: Define a M...
87
88
89
90
91
92
  #
  # Define a callable command for descending to a new directory
  #
  # Call by doing: $(call descend,directory[,target])
  #
  descend = \
bf35182ff   David Howells   tools: Honour the...
93
  	+mkdir -p $(OUTPUT)$(1) && \
2b73f65d1   David Howells   tools: Pass the t...
94
  	$(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
ca9dfc6cc   David Howells   tools: Define a M...
95

bf35182ff   David Howells   tools: Honour the...
96
  QUIET_SUBDIR0  = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
98d89bfd0   Borislav Petkov   tools: Add Makefi...
97
  QUIET_SUBDIR1  =
e572d0887   Josh Poimboeuf   tools build: Add ...
98
  ifneq ($(silent),1)
65fb09922   Ingo Molnar   tools: Harmonize ...
99
100
    ifneq ($(V),1)
  	QUIET_CC       = @echo '  CC       '$@;
bdebbacd4   Jiri Olsa   tools lib traceev...
101
  	QUIET_CC_FPIC  = @echo '  CC FPIC  '$@;
47c09d6a9   Song Liu   bpftool: Introduc...
102
  	QUIET_CLANG    = @echo '  CLANG    '$@;
65fb09922   Ingo Molnar   tools: Harmonize ...
103
104
105
106
  	QUIET_AR       = @echo '  AR       '$@;
  	QUIET_LINK     = @echo '  LINK     '$@;
  	QUIET_MKDIR    = @echo '  MKDIR    '$@;
  	QUIET_GEN      = @echo '  GEN      '$@;
98d89bfd0   Borislav Petkov   tools: Add Makefi...
107
  	QUIET_SUBDIR0  = +@subdir=
65fb09922   Ingo Molnar   tools: Harmonize ...
108
109
  	QUIET_SUBDIR1  = ;$(NO_SUBDIR) \
  			  echo '  SUBDIR   '$$subdir; \
98d89bfd0   Borislav Petkov   tools: Add Makefi...
110
  			 $(MAKE) $(PRINT_DIR) -C $$subdir
65fb09922   Ingo Molnar   tools: Harmonize ...
111
112
  	QUIET_FLEX     = @echo '  FLEX     '$@;
  	QUIET_BISON    = @echo '  BISON    '$@;
bf35182ff   David Howells   tools: Honour the...
113
114
  
  	descend = \
65fb09922   Ingo Molnar   tools: Harmonize ...
115
  		+@echo	       '  DESCEND  '$(1); \
bf35182ff   David Howells   tools: Honour the...
116
  		mkdir -p $(OUTPUT)$(1) && \
2b73f65d1   David Howells   tools: Pass the t...
117
  		$(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
b7248defc   Jiri Olsa   perf tools: Makin...
118
119
120
121
122
  
  	QUIET_CLEAN    = @printf '  CLEAN    %s
  ' $1;
  	QUIET_INSTALL  = @printf '  INSTALL  %s
  ' $1;
d32442485   Quentin Monnet   tools: bpftool: c...
123
124
  	QUIET_UNINST   = @printf '  UNINST   %s
  ' $1;
65fb09922   Ingo Molnar   tools: Harmonize ...
125
    endif
98d89bfd0   Borislav Petkov   tools: Add Makefi...
126
  endif
9564a8cf4   Rasmus Villemoes   Kbuild: fix # esc...
127
128
  
  pound := \#