diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 102 |
1 files changed, 54 insertions, 48 deletions
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 3 | 1 | VERSION = 3 |
2 | PATCHLEVEL = 16 | 2 | PATCHLEVEL = 16 |
3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
4 | EXTRAVERSION = -rc3 | 4 | EXTRAVERSION = -rc6 |
5 | NAME = Shuffling Zombie Juror | 5 | NAME = Shuffling Zombie Juror |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
@@ -41,6 +41,29 @@ unexport GREP_OPTIONS | |||
41 | # descending is started. They are now explicitly listed as the | 41 | # descending is started. They are now explicitly listed as the |
42 | # prepare rule. | 42 | # prepare rule. |
43 | 43 | ||
44 | # Beautify output | ||
45 | # --------------------------------------------------------------------------- | ||
46 | # | ||
47 | # Normally, we echo the whole command before executing it. By making | ||
48 | # that echo $($(quiet)$(cmd)), we now have the possibility to set | ||
49 | # $(quiet) to choose other forms of output instead, e.g. | ||
50 | # | ||
51 | # quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ | ||
52 | # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< | ||
53 | # | ||
54 | # If $(quiet) is empty, the whole command will be printed. | ||
55 | # If it is set to "quiet_", only the short version will be printed. | ||
56 | # If it is set to "silent_", nothing will be printed at all, since | ||
57 | # the variable $(silent_cmd_cc_o_c) doesn't exist. | ||
58 | # | ||
59 | # A simple variant is to prefix commands with $(Q) - that's useful | ||
60 | # for commands that shall be hidden in non-verbose mode. | ||
61 | # | ||
62 | # $(Q)ln $@ :< | ||
63 | # | ||
64 | # If KBUILD_VERBOSE equals 0 then the above command will be hidden. | ||
65 | # If KBUILD_VERBOSE equals 1 then the above command is displayed. | ||
66 | # | ||
44 | # To put more focus on warnings, be less verbose as default | 67 | # To put more focus on warnings, be less verbose as default |
45 | # Use 'make V=1' to see the full commands | 68 | # Use 'make V=1' to see the full commands |
46 | 69 | ||
@@ -51,6 +74,29 @@ ifndef KBUILD_VERBOSE | |||
51 | KBUILD_VERBOSE = 0 | 74 | KBUILD_VERBOSE = 0 |
52 | endif | 75 | endif |
53 | 76 | ||
77 | ifeq ($(KBUILD_VERBOSE),1) | ||
78 | quiet = | ||
79 | Q = | ||
80 | else | ||
81 | quiet=quiet_ | ||
82 | Q = @ | ||
83 | endif | ||
84 | |||
85 | # If the user is running make -s (silent mode), suppress echoing of | ||
86 | # commands | ||
87 | |||
88 | ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4 | ||
89 | ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),) | ||
90 | quiet=silent_ | ||
91 | endif | ||
92 | else # make-3.8x | ||
93 | ifneq ($(filter s% -s%,$(MAKEFLAGS)),) | ||
94 | quiet=silent_ | ||
95 | endif | ||
96 | endif | ||
97 | |||
98 | export quiet Q KBUILD_VERBOSE | ||
99 | |||
54 | # Call a source code checker (by default, "sparse") as part of the | 100 | # Call a source code checker (by default, "sparse") as part of the |
55 | # C compilation. | 101 | # C compilation. |
56 | # | 102 | # |
@@ -126,7 +172,13 @@ PHONY += $(MAKECMDGOALS) sub-make | |||
126 | $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make | 172 | $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make |
127 | @: | 173 | @: |
128 | 174 | ||
175 | # Fake the "Entering directory" message once, so that IDEs/editors are | ||
176 | # able to understand relative filenames. | ||
177 | echodir := @echo | ||
178 | quiet_echodir := @echo | ||
179 | silent_echodir := @: | ||
129 | sub-make: FORCE | 180 | sub-make: FORCE |
181 | $($(quiet)echodir) "make[1]: Entering directory \`$(KBUILD_OUTPUT)'" | ||
130 | $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ | 182 | $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ |
131 | KBUILD_SRC=$(CURDIR) \ | 183 | KBUILD_SRC=$(CURDIR) \ |
132 | KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \ | 184 | KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \ |
@@ -289,52 +341,6 @@ endif | |||
289 | export KBUILD_MODULES KBUILD_BUILTIN | 341 | export KBUILD_MODULES KBUILD_BUILTIN |
290 | export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD | 342 | export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD |
291 | 343 | ||
292 | # Beautify output | ||
293 | # --------------------------------------------------------------------------- | ||
294 | # | ||
295 | # Normally, we echo the whole command before executing it. By making | ||
296 | # that echo $($(quiet)$(cmd)), we now have the possibility to set | ||
297 | # $(quiet) to choose other forms of output instead, e.g. | ||
298 | # | ||
299 | # quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ | ||
300 | # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< | ||
301 | # | ||
302 | # If $(quiet) is empty, the whole command will be printed. | ||
303 | # If it is set to "quiet_", only the short version will be printed. | ||
304 | # If it is set to "silent_", nothing will be printed at all, since | ||
305 | # the variable $(silent_cmd_cc_o_c) doesn't exist. | ||
306 | # | ||
307 | # A simple variant is to prefix commands with $(Q) - that's useful | ||
308 | # for commands that shall be hidden in non-verbose mode. | ||
309 | # | ||
310 | # $(Q)ln $@ :< | ||
311 | # | ||
312 | # If KBUILD_VERBOSE equals 0 then the above command will be hidden. | ||
313 | # If KBUILD_VERBOSE equals 1 then the above command is displayed. | ||
314 | |||
315 | ifeq ($(KBUILD_VERBOSE),1) | ||
316 | quiet = | ||
317 | Q = | ||
318 | else | ||
319 | quiet=quiet_ | ||
320 | Q = @ | ||
321 | endif | ||
322 | |||
323 | # If the user is running make -s (silent mode), suppress echoing of | ||
324 | # commands | ||
325 | |||
326 | ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4 | ||
327 | ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),) | ||
328 | quiet=silent_ | ||
329 | endif | ||
330 | else # make-3.8x | ||
331 | ifneq ($(filter s% -s%,$(MAKEFLAGS)),) | ||
332 | quiet=silent_ | ||
333 | endif | ||
334 | endif | ||
335 | |||
336 | export quiet Q KBUILD_VERBOSE | ||
337 | |||
338 | ifneq ($(CC),) | 344 | ifneq ($(CC),) |
339 | ifeq ($(shell $(CC) -v 2>&1 | grep -c "clang version"), 1) | 345 | ifeq ($(shell $(CC) -v 2>&1 | grep -c "clang version"), 1) |
340 | COMPILER := clang | 346 | COMPILER := clang |
@@ -1170,7 +1176,7 @@ distclean: mrproper | |||
1170 | # Packaging of the kernel to various formats | 1176 | # Packaging of the kernel to various formats |
1171 | # --------------------------------------------------------------------------- | 1177 | # --------------------------------------------------------------------------- |
1172 | # rpm target kept for backward compatibility | 1178 | # rpm target kept for backward compatibility |
1173 | package-dir := $(srctree)/scripts/package | 1179 | package-dir := scripts/package |
1174 | 1180 | ||
1175 | %src-pkg: FORCE | 1181 | %src-pkg: FORCE |
1176 | $(Q)$(MAKE) $(build)=$(package-dir) $@ | 1182 | $(Q)$(MAKE) $(build)=$(package-dir) $@ |