Makefile (4241119eeb14f762e2d7f6e7c52afd22cea1de37) | Makefile (6f0fa58e459642b16901521cc58ac474b787ec5b) |
---|---|
1VERSION = 4 2PATCHLEVEL = 12 3SUBLEVEL = 0 | 1VERSION = 4 2PATCHLEVEL = 12 3SUBLEVEL = 0 |
4EXTRAVERSION = -rc4 | 4EXTRAVERSION = -rc2 |
5NAME = Fearless Coyote 6 7# *DOCUMENTATION* 8# To see a list of typical targets execute "make help" 9# More info can be located in ./README 10# Comments in this file are targeted only to the developer, do not 11# expect to learn how to build the kernel reading this file. 12 --- 66 unchanged lines hidden (view full) --- 79else 80 quiet=quiet_ 81 Q = @ 82endif 83 84# If the user is running make -s (silent mode), suppress echoing of 85# commands 86 | 5NAME = Fearless Coyote 6 7# *DOCUMENTATION* 8# To see a list of typical targets execute "make help" 9# More info can be located in ./README 10# Comments in this file are targeted only to the developer, do not 11# expect to learn how to build the kernel reading this file. 12 --- 66 unchanged lines hidden (view full) --- 79else 80 quiet=quiet_ 81 Q = @ 82endif 83 84# If the user is running make -s (silent mode), suppress echoing of 85# commands 86 |
87ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4 88ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),) | 87ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),) |
89 quiet=silent_ 90 tools_silent=s 91endif | 88 quiet=silent_ 89 tools_silent=s 90endif |
92else # make-3.8x 93ifneq ($(filter s% -s%,$(MAKEFLAGS)),) 94 quiet=silent_ 95 tools_silent=-s 96endif 97endif | |
98 99export quiet Q KBUILD_VERBOSE 100 101# kbuild supports saving output files in a separate directory. 102# To locate output files in a separate directory two syntaxes are supported. 103# In both cases the working directory must be the root of the kernel src. 104# 1) O= 105# Use "make O=dir/to/store/output/files/" --- 1623 unchanged lines hidden --- | 91 92export quiet Q KBUILD_VERBOSE 93 94# kbuild supports saving output files in a separate directory. 95# To locate output files in a separate directory two syntaxes are supported. 96# In both cases the working directory must be the root of the kernel src. 97# 1) O= 98# Use "make O=dir/to/store/output/files/" --- 1623 unchanged lines hidden --- |