Makefile (a41dfe799a22a5da7e59ac5743be3d5338b6d373) Makefile (e572d0887137acfc53f18175522964ec19d88175)
1VERSION = 4
2PATCHLEVEL = 10
3SUBLEVEL = 0
1VERSION = 4
2PATCHLEVEL = 10
3SUBLEVEL = 0
4EXTRAVERSION = -rc2
5NAME = Roaring Lionus
4EXTRAVERSION = -rc5
5NAME = Anniversary Edition
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
13# o Do not use make's built-in rules and variables

--- 68 unchanged lines hidden (view full) ---

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))),)
89 quiet=silent_
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
13# o Do not use make's built-in rules and variables

--- 68 unchanged lines hidden (view full) ---

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))),)
89 quiet=silent_
90 tools_silent=s
90endif
91else # make-3.8x
92ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
93 quiet=silent_
91endif
92else # make-3.8x
93ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
94 quiet=silent_
95 tools_silent=-s
94endif
95endif
96
97export quiet Q KBUILD_VERBOSE
98
99# kbuild supports saving output files in a separate directory.
100# To locate output files in a separate directory two syntaxes are supported.
101# In both cases the working directory must be the root of the kernel src.

--- 1500 unchanged lines hidden (view full) ---

1602 @echo $(KERNELVERSION)
1603
1604image_name:
1605 @echo $(KBUILD_IMAGE)
1606
1607# Clear a bunch of variables before executing the submake
1608tools/: FORCE
1609 $(Q)mkdir -p $(objtree)/tools
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.

--- 1500 unchanged lines hidden (view full) ---

1604 @echo $(KERNELVERSION)
1605
1606image_name:
1607 @echo $(KBUILD_IMAGE)
1608
1609# Clear a bunch of variables before executing the submake
1610tools/: FORCE
1611 $(Q)mkdir -p $(objtree)/tools
1610 $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(filter --j% -j,$(MAKEFLAGS))" O=$(shell cd $(objtree) && /bin/pwd) subdir=tools -C $(src)/tools/
1612 $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(shell cd $(objtree) && /bin/pwd) subdir=tools -C $(src)/tools/
1611
1612tools/%: FORCE
1613 $(Q)mkdir -p $(objtree)/tools
1613
1614tools/%: FORCE
1615 $(Q)mkdir -p $(objtree)/tools
1614 $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(filter --j% -j,$(MAKEFLAGS))" O=$(shell cd $(objtree) && /bin/pwd) subdir=tools -C $(src)/tools/ $*
1616 $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(shell cd $(objtree) && /bin/pwd) subdir=tools -C $(src)/tools/ $*
1615
1616# Single targets
1617# ---------------------------------------------------------------------------
1618# Single targets are compatible with:
1619# - build with mixed source and output
1620# - build with separate output dir 'make O=...'
1621# - external modules
1622#

--- 81 unchanged lines hidden ---
1617
1618# Single targets
1619# ---------------------------------------------------------------------------
1620# Single targets are compatible with:
1621# - build with mixed source and output
1622# - build with separate output dir 'make O=...'
1623# - external modules
1624#

--- 81 unchanged lines hidden ---