aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2006-06-10 03:15:27 -0400
committerSam Ravnborg <sam@mars.ravnborg.org>2006-06-10 03:15:27 -0400
commit566f81ca598f80de03e80a9a743e94b65b4e017e (patch)
treed10821892ddef2329b025f196d23b930d8cde035 /Makefile
parentff5417107b7615fcef772cabcb717f4a715ffadc (diff)
kbuild: ignore make's built-in rules & variables
kbuild does explicitly specify what to do in all cases, and each time make's built-in rules & variables has been used it has been a bug. So to speed up things and to avoid the hard-to-debug error situations ignore the built-in definitions. If any part of the kernel uses the built-in definitions the build will just stop there and it should be trivial to fix. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 818d1950e22d..1b2fd97f503a 100644
--- a/Makefile
+++ b/Makefile
@@ -267,10 +267,9 @@ MAKEFLAGS += --include-dir=$(srctree)
267# We need some generic definitions 267# We need some generic definitions
268include $(srctree)/scripts/Kbuild.include 268include $(srctree)/scripts/Kbuild.include
269 269
270# For maximum performance (+ possibly random breakage, uncomment 270# Do not use make's built-in rules and variables
271# the following) 271# This increases performance and avoid hard-to-debug behaviour
272 272MAKEFLAGS += -rR
273#MAKEFLAGS += -rR
274 273
275# Make variables (CC, etc...) 274# Make variables (CC, etc...)
276 275