Home Home > GIT Browse
summaryrefslogtreecommitdiff
authorAdrian Bunk <bunk@kernel.org>2008-01-27 16:58:41 (GMT)
committer Adrian Bunk <bunk@kernel.org>2008-01-27 16:58:41 (GMT)
commitae793603c3a69cf676d48233106e515fbdf4ceb2 (patch) (unidiff)
treed98d169fba34c6709653353493341be7f62711a1
parent29841b66d1ab6491d7fc6600ff760ad2c7082022 (diff)
Linux 2.6.16.60v2.6.16.60
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a256e2a..565d01c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,28 +1,28 @@
1VERSION = 2 1VERSION = 2
2PATCHLEVEL = 6 2PATCHLEVEL = 6
3SUBLEVEL = 16 3SUBLEVEL = 16
4EXTRAVERSION = .60-rc1 4EXTRAVERSION = .60
5NAME=Stable Penguin 5NAME=Stable Penguin
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
8# To see a list of typical targets execute "make help" 8# To see a list of typical targets execute "make help"
9# More info can be located in ./README 9# More info can be located in ./README
10# Comments in this file are targeted only to the developer, do not 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. 11# expect to learn how to build the kernel reading this file.
12 12
13# Do not print "Entering directory ..." 13# Do not print "Entering directory ..."
14MAKEFLAGS += --no-print-directory 14MAKEFLAGS += --no-print-directory
15 15
16# We are using a recursive build, so we need to do a little thinking 16# We are using a recursive build, so we need to do a little thinking
17# to get the ordering right. 17# to get the ordering right.
18# 18#
19# Most importantly: sub-Makefiles should only ever modify files in 19# Most importantly: sub-Makefiles should only ever modify files in
20# their own directory. If in some directory we have a dependency on 20# their own directory. If in some directory we have a dependency on
21# a file in another dir (which doesn't happen often, but it's often 21# a file in another dir (which doesn't happen often, but it's often
22# unavoidable when linking the built-in.o targets which finally 22# unavoidable when linking the built-in.o targets which finally
23# turn into vmlinux), we will call a sub make in that other dir, and 23# turn into vmlinux), we will call a sub make in that other dir, and
24# after that we are sure that everything which is in that other dir 24# after that we are sure that everything which is in that other dir
25# is now up to date. 25# is now up to date.
26# 26#
27# The only cases where we need to modify files which have global 27# The only cases where we need to modify files which have global
28# effects are thus separated out and done before the recursive 28# effects are thus separated out and done before the recursive