kbuild: revert $(realpath ...) to $(shell cd ... && /bin/pwd)
[linux-2.6-block.git] / tools / scripts / Makefile.include
CommitLineData
9e4a6648 1ifneq ($(O),)
bf35182f 2ifeq ($(origin O), command line)
028568d8
MY
3 dummy := $(if $(shell test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
4 ABSOLUTE_O := $(shell cd $(O) ; pwd)
bf35182f 5 OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
c883122a 6 COMMAND_O := O=$(ABSOLUTE_O)
bf35182f
DH
7ifeq ($(objtree),)
8 objtree := $(O)
9endif
98d89bfd 10endif
9e4a6648 11endif
98d89bfd 12
98d89bfd 13# check that the output directory actually exists
9e4a6648 14ifneq ($(OUTPUT),)
028568d8 15OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
98d89bfd
BP
16$(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
17endif
18
19#
20# Include saner warnings here, which can catch bugs:
21#
d8caf3eb
BP
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
d8caf3eb
BP
35EXTRA_WARNINGS += -Wstrict-prototypes
36EXTRA_WARNINGS += -Wswitch-default
37EXTRA_WARNINGS += -Wswitch-enum
38EXTRA_WARNINGS += -Wundef
39EXTRA_WARNINGS += -Wwrite-strings
40EXTRA_WARNINGS += -Wformat
98d89bfd 41
3866058e
DCC
42CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
43
44ifeq ($(CC_NO_CLANG), 1)
093b75ef
ACM
45EXTRA_WARNINGS += -Wstrict-aliasing=3
46endif
47
3337e682
ACM
48# Hack to avoid type-punned warnings on old systems such as RHEL5:
49# We should be changing CFLAGS and checking gcc version, but this
50# will do for now and keep the above -Wstrict-aliasing=3 in place
51# in newer systems.
52# Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
53ifneq ($(filter 3.%,$(MAKE_VERSION)),) # make-3
54EXTRA_WARNINGS += -fno-strict-aliasing
55endif
56
98d89bfd
BP
57ifneq ($(findstring $(MAKEFLAGS), w),w)
58PRINT_DIR = --no-print-directory
59else
60NO_SUBDIR = :
61endif
62
6f0fa58e 63ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
e572d088
JP
64 silent=1
65endif
e572d088 66
ca9dfc6c
DH
67#
68# Define a callable command for descending to a new directory
69#
70# Call by doing: $(call descend,directory[,target])
71#
72descend = \
bf35182f 73 +mkdir -p $(OUTPUT)$(1) && \
2b73f65d 74 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
ca9dfc6c 75
bf35182f 76QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
98d89bfd
BP
77QUIET_SUBDIR1 =
78
e572d088 79ifneq ($(silent),1)
65fb0992
IM
80 ifneq ($(V),1)
81 QUIET_CC = @echo ' CC '$@;
bdebbacd 82 QUIET_CC_FPIC = @echo ' CC FPIC '$@;
65fb0992
IM
83 QUIET_AR = @echo ' AR '$@;
84 QUIET_LINK = @echo ' LINK '$@;
85 QUIET_MKDIR = @echo ' MKDIR '$@;
86 QUIET_GEN = @echo ' GEN '$@;
98d89bfd 87 QUIET_SUBDIR0 = +@subdir=
65fb0992
IM
88 QUIET_SUBDIR1 = ;$(NO_SUBDIR) \
89 echo ' SUBDIR '$$subdir; \
98d89bfd 90 $(MAKE) $(PRINT_DIR) -C $$subdir
65fb0992
IM
91 QUIET_FLEX = @echo ' FLEX '$@;
92 QUIET_BISON = @echo ' BISON '$@;
bf35182f
DH
93
94 descend = \
65fb0992 95 +@echo ' DESCEND '$(1); \
bf35182f 96 mkdir -p $(OUTPUT)$(1) && \
2b73f65d 97 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
b7248def
JO
98
99 QUIET_CLEAN = @printf ' CLEAN %s\n' $1;
100 QUIET_INSTALL = @printf ' INSTALL %s\n' $1;
65fb0992 101 endif
98d89bfd 102endif