GNU Linux-libre 4.4.285-gnu1
[releases.git] / tools / scripts / Makefile.include
1 ifneq ($(O),)
2 ifeq ($(origin O), command line)
3         dummy := $(if $(shell cd $(PWD); test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
4         ABSOLUTE_O := $(shell cd $(PWD); cd $(O) ; pwd)
5         OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
6         COMMAND_O := O=$(ABSOLUTE_O)
7 ifeq ($(objtree),)
8         objtree := $(O)
9 endif
10 endif
11 endif
12
13 # check that the output directory actually exists
14 ifneq ($(OUTPUT),)
15 OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
16 $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
17 endif
18
19 #
20 # Include saner warnings here, which can catch bugs:
21 #
22 EXTRA_WARNINGS := -Wbad-function-cast
23 EXTRA_WARNINGS += -Wdeclaration-after-statement
24 EXTRA_WARNINGS += -Wformat-security
25 EXTRA_WARNINGS += -Wformat-y2k
26 EXTRA_WARNINGS += -Winit-self
27 EXTRA_WARNINGS += -Wmissing-declarations
28 EXTRA_WARNINGS += -Wmissing-prototypes
29 EXTRA_WARNINGS += -Wnested-externs
30 EXTRA_WARNINGS += -Wno-system-headers
31 EXTRA_WARNINGS += -Wold-style-definition
32 EXTRA_WARNINGS += -Wpacked
33 EXTRA_WARNINGS += -Wredundant-decls
34 EXTRA_WARNINGS += -Wshadow
35 EXTRA_WARNINGS += -Wstrict-aliasing=3
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 ifneq ($(findstring $(MAKEFLAGS), w),w)
44 PRINT_DIR = --no-print-directory
45 else
46 NO_SUBDIR = :
47 endif
48
49 ifneq ($(filter 4.%,$(MAKE_VERSION)),)  # make-4
50 ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),)
51   silent=1
52 endif
53 else                                    # make-3.8x
54 ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
55   silent=1
56 endif
57 endif
58
59 #
60 # Define a callable command for descending to a new directory
61 #
62 # Call by doing: $(call descend,directory[,target])
63 #
64 descend = \
65         +mkdir -p $(OUTPUT)$(1) && \
66         $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
67
68 QUIET_SUBDIR0  = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
69 QUIET_SUBDIR1  =
70
71 ifneq ($(silent),1)
72   ifneq ($(V),1)
73         QUIET_CC       = @echo '  CC       '$@;
74         QUIET_CC_FPIC  = @echo '  CC FPIC  '$@;
75         QUIET_AR       = @echo '  AR       '$@;
76         QUIET_LINK     = @echo '  LINK     '$@;
77         QUIET_MKDIR    = @echo '  MKDIR    '$@;
78         QUIET_GEN      = @echo '  GEN      '$@;
79         QUIET_SUBDIR0  = +@subdir=
80         QUIET_SUBDIR1  = ;$(NO_SUBDIR) \
81                           echo '  SUBDIR   '$$subdir; \
82                          $(MAKE) $(PRINT_DIR) -C $$subdir
83         QUIET_FLEX     = @echo '  FLEX     '$@;
84         QUIET_BISON    = @echo '  BISON    '$@;
85
86         descend = \
87                 +@echo         '  DESCEND  '$(1); \
88                 mkdir -p $(OUTPUT)$(1) && \
89                 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
90
91         QUIET_CLEAN    = @printf '  CLEAN    %s\n' $1;
92         QUIET_INSTALL  = @printf '  INSTALL  %s\n' $1;
93   endif
94 endif
95
96 pound := \#