|
diff --git a/Makefile b/Makefile index a256e2a..565d01c 100644 --- a/ Makefile+++ b/ Makefile |
|
| @@ -1,28 +1,28 @@ |
| 1 | VERSION = 2 |
1 | VERSION = 2 |
| 2 | PATCHLEVEL = 6 |
2 | PATCHLEVEL = 6 |
| 3 | SUBLEVEL = 16 |
3 | SUBLEVEL = 16 |
| 4 | EXTRAVERSION = .60-rc1 |
4 | EXTRAVERSION = .60 |
| 5 | NAME=Stable Penguin |
5 | NAME=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 ..." |
| 14 | MAKEFLAGS += --no-print-directory |
14 | MAKEFLAGS += --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 |
|