Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1ifneq ($(O),)
2ifeq ($(origin O), command line)
3 dummy := $(if $(shell test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
4 ABSOLUTE_O := $(shell cd $(O) ; pwd)
5 OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
6 COMMAND_O := O=$(ABSOLUTE_O)
7ifeq ($(objtree),)
8 objtree := $(O)
9endif
10endif
11endif
12
13# check that the output directory actually exists
14ifneq ($(OUTPUT),)
15OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
16$(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
17endif
18
19#
20# Include saner warnings here, which can catch bugs:
21#
22EXTRA_WARNINGS := -Wbad-function-cast
23EXTRA_WARNINGS += -Wdeclaration-after-statement
24EXTRA_WARNINGS += -Wformat-security
25EXTRA_WARNINGS += -Wformat-y2k
26EXTRA_WARNINGS += -Winit-self
27EXTRA_WARNINGS += -Wmissing-declarations
28EXTRA_WARNINGS += -Wmissing-prototypes
29EXTRA_WARNINGS += -Wnested-externs
30EXTRA_WARNINGS += -Wno-system-headers
31EXTRA_WARNINGS += -Wold-style-definition
32EXTRA_WARNINGS += -Wpacked
33EXTRA_WARNINGS += -Wredundant-decls
34EXTRA_WARNINGS += -Wshadow
35EXTRA_WARNINGS += -Wstrict-prototypes
36EXTRA_WARNINGS += -Wswitch-default
37EXTRA_WARNINGS += -Wswitch-enum
38EXTRA_WARNINGS += -Wundef
39EXTRA_WARNINGS += -Wwrite-strings
40EXTRA_WARNINGS += -Wformat
41
42ifneq ($(CC), clang)
43EXTRA_WARNINGS += -Wstrict-aliasing=3
44endif
45
46# Hack to avoid type-punned warnings on old systems such as RHEL5:
47# We should be changing CFLAGS and checking gcc version, but this
48# will do for now and keep the above -Wstrict-aliasing=3 in place
49# in newer systems.
50# Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
51ifneq ($(filter 3.%,$(MAKE_VERSION)),) # make-3
52EXTRA_WARNINGS += -fno-strict-aliasing
53endif
54
55ifneq ($(findstring $(MAKEFLAGS), w),w)
56PRINT_DIR = --no-print-directory
57else
58NO_SUBDIR = :
59endif
60
61ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
62 silent=1
63endif
64
65#
66# Define a callable command for descending to a new directory
67#
68# Call by doing: $(call descend,directory[,target])
69#
70descend = \
71 +mkdir -p $(OUTPUT)$(1) && \
72 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
73
74QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
75QUIET_SUBDIR1 =
76
77ifneq ($(silent),1)
78 ifneq ($(V),1)
79 QUIET_CC = @echo ' CC '$@;
80 QUIET_CC_FPIC = @echo ' CC FPIC '$@;
81 QUIET_AR = @echo ' AR '$@;
82 QUIET_LINK = @echo ' LINK '$@;
83 QUIET_MKDIR = @echo ' MKDIR '$@;
84 QUIET_GEN = @echo ' GEN '$@;
85 QUIET_SUBDIR0 = +@subdir=
86 QUIET_SUBDIR1 = ;$(NO_SUBDIR) \
87 echo ' SUBDIR '$$subdir; \
88 $(MAKE) $(PRINT_DIR) -C $$subdir
89 QUIET_FLEX = @echo ' FLEX '$@;
90 QUIET_BISON = @echo ' BISON '$@;
91
92 descend = \
93 +@echo ' DESCEND '$(1); \
94 mkdir -p $(OUTPUT)$(1) && \
95 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
96
97 QUIET_CLEAN = @printf ' CLEAN %s\n' $1;
98 QUIET_INSTALL = @printf ' INSTALL %s\n' $1;
99 endif
100endif